Changes between Initial Version and Version 1 of Ticket #5211


Ignore:
Timestamp:
Aug 21, 2013, 8:56:41 AM (11 years ago)
Author:
Even Rouault
Comment:

Suggestiong applied in trunk (r26356)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5211 – Description

    initial v1  
    11The Microsoft KB111610 (http://support.microsoft.com/kb/111610) shows that you should check the return value from LoadLibrary as follows:
    22
     3{{{
    34    pLibrary = LoadLibrary(pszLibrary);
    45    if( pLibrary <= (void*)HINSTANCE_ERROR )
     
    67        return NULL;
    78    }
     9}}}
     10
    811
    912This affects two files: gbgetsymbol.cpp, cplgetsymbol.cpp.