mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:42:57 +00:00
fix some bugs
svn path=/trunk/; revision=29264
This commit is contained in:
parent
b6ebc1b19c
commit
e539947c94
1 changed files with 10 additions and 10 deletions
|
@ -54,10 +54,10 @@ PropSheetExtProc(PSP_PROPSHEETPAGE_REQUEST PropPageRequest, LPFNADDPROPSHEETPAGE
|
|||
PropSheetPage.pfnDlgProc = ProcessorDlgProc;
|
||||
|
||||
hPropSheetPage = CreatePropertySheetPage(&PropSheetPage);
|
||||
if(hPropSheetPage)
|
||||
if(!hPropSheetPage)
|
||||
return FALSE;
|
||||
|
||||
if(!(*fAddFunc)(hPropSheetPage, lParam)) {
|
||||
if(!(fAddFunc)(hPropSheetPage, lParam)) {
|
||||
DestroyPropertySheetPage (hPropSheetPage);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue