Changeset 1063 for trunk/dll/wrappers.c
- Timestamp:
- Jul 11, 2008, 5:33:36 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/dll/wrappers.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/wrappers.c
r1037 r1063 333 333 { 334 334 if (pv && pv != NullStr) { 335 # ifdef FORTIFY335 # ifdef FORTIFY 336 336 Fortify_free(pv, pszSrcFile, uiLineNumber); 337 # else337 # else 338 338 free(pv); 339 # endif339 # endif 340 340 341 341 } … … 350 350 # else 351 351 PVOID pv = malloc(cBytes); 352 # endif352 # endif 353 353 354 354 if (!pv) … … 375 375 { 376 376 if (pvIn != NullStr) { 377 # ifdef FORTIFY378 PVOID pv = Fortify_realloc(pvIn, cBytes, pszSrcFile, uiLineNumber);379 # else380 PVOID pv = realloc(pvIn, cBytes);381 # endif377 # ifdef FORTIFY 378 PVOID pv = Fortify_realloc(pvIn, cBytes, pszSrcFile, uiLineNumber); 379 # else 380 PVOID pv = realloc(pvIn, cBytes); 381 # endif 382 382 383 383 if (!pv && cBytes) … … 398 398 # else 399 399 PSZ psz = strdup(pszIn); 400 # endif400 # endif 401 401 402 402 if (!psz)
Note:
See TracChangeset
for help on using the changeset viewer.
