Changeset 1029 for trunk/dll/walkem.c
- Timestamp:
- Jun 23, 2008, 3:30:16 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/dll/walkem.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/walkem.c
r1027 r1029 28 28 29 Feb 08 GKY Refactor global command line variables to notebook.h 29 29 19 Jun 08 JBS Ticket 227: Allow temporary saving/deleting of the shutdown state of directory containers 30 22 Jun 08 GKY Add free_?dir for fortify testing 30 31 31 32 ***********************************************************************/ … … 534 535 } 535 536 537 VOID free_ldir(VOID) 538 { 539 LINKDIRS *info, *next; 540 541 info = ldirhead; 542 while (info) { 543 next = info->next; 544 xfree(info->path, pszSrcFile, __LINE__); 545 xfree(info, pszSrcFile, __LINE__); 546 info = next; 547 } 548 ldirhead = NULL; 549 } 550 551 VOID free_udir(VOID) 552 { 553 LINKDIRS *info, *next; 554 555 info = udirhead; 556 while (info) { 557 next = info->next; 558 xfree(info->path, pszSrcFile, __LINE__); 559 xfree(info, pszSrcFile, __LINE__); 560 info = next; 561 } 562 udirhead = NULL; 563 } 564 536 565 VOID FillPathListBox(HWND hwnd, HWND hwnddrive, HWND hwnddir, CHAR * pszPath, 537 566 BOOL nounwriteable)
Note:
See TracChangeset
for help on using the changeset viewer.
