Changeset 21356 for trunk/src/user32/mdi.c
- Timestamp:
- Feb 21, 2010, 5:33:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/mdi.c
r9523 r21356 1221 1221 { 1222 1222 if (ci->frameTitle) HeapFree( GetProcessHeap(), 0, ci->frameTitle ); 1223 if ((ci->frameTitle = HeapAlloc( GetProcessHeap(), 0, (strlenW(lpTitle)+1)*sizeof(WCHAR))) )1223 if ((ci->frameTitle = HeapAlloc( GetProcessHeap(), 0, (strlenW(lpTitle)+1)*sizeof(WCHAR))) != NULL) 1224 1224 strcpyW( ci->frameTitle, lpTitle ); 1225 1225 } … … 2046 2046 SetRectEmpty( &childRect ); 2047 2047 2048 if ((list = WIN_ListChildren( hwnd )) )2048 if ((list = WIN_ListChildren( hwnd )) != NULL) 2049 2049 { 2050 2050 int i;
Note:
See TracChangeset
for help on using the changeset viewer.