Ignore:
Timestamp:
Feb 21, 2010, 5:33:53 PM (16 years ago)
Author:
rlwalsh
Message:

eliminate VACPP warning & info msgs - see Ticket #1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/mdi.c

    r9523 r21356  
    12211221    {
    12221222        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)
    12241224            strcpyW( ci->frameTitle, lpTitle );
    12251225    }
     
    20462046    SetRectEmpty( &childRect );
    20472047
    2048     if ((list = WIN_ListChildren( hwnd )))
     2048    if ((list = WIN_ListChildren( hwnd )) != NULL)
    20492049    {
    20502050        int i;
Note: See TracChangeset for help on using the changeset viewer.