Changeset 1009 for trunk/dll/systemf.c


Ignore:
Timestamp:
May 10, 2008, 9:51:58 AM (17 years ago)
Author:
Steven Levine
Message:

Add xfree xstrdup Fortify support
Add MT capable Fortify scope logic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/systemf.c

    r989 r1009  
    598598                      EXEC_FRAME, &ex);
    599599      if (ret != 1) {
    600         xfree(commandline);
     600        xfree(commandline, pszSrcFile, __LINE__);
    601601        return (ret == 0) ? -1 : -2;
    602602      }
     
    13021302              strcpy(executable, GetCmdSpec(FALSE));
    13031303            }
    1304             xfree(temp);
     1304            xfree(temp, pszSrcFile, __LINE__);
    13051305          }
    13061306        }
     
    13161316        pgd.swpInitial.hwndInsertBehind = HWND_TOP;
    13171317        happ = WinStartApp(hwndNotify, &pgd, NULL, NULL, ulOptions);
    1318         xfree(parameters);
     1318        xfree(parameters, pszSrcFile, __LINE__);
    13191319      }
    13201320    }
    1321     xfree(executable);
     1321    xfree(executable, pszSrcFile, __LINE__);
    13221322  }
    13231323  return happ;
Note: See TracChangeset for help on using the changeset viewer.