Changeset 985 for trunk/dll/notify.c
- Timestamp:
- Mar 1, 2008, 2:37:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/notify.c
r907 r985 14 14 06 Aug 07 GKY Reduce DosSleep times (ticket 148) 15 15 20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat 16 29 Feb 08 GKY Use xfree where appropriate 16 17 17 18 … … 190 191 191 192 if (p != str) 192 free(p);193 xfree(p); 193 194 if (id > NOTE_MAX) 194 195 id = NOTE_FRAME; … … 254 255 LM_INSERTITEM, MPFROM2SHORT(LIT_END, 0), mp2); 255 256 PostMsg(hwndNotify, UM_NOTIFY, MPVOID, MPVOID); 256 free((CHAR *) mp2);257 xfree((CHAR *) mp2); 257 258 } 258 259 WinDismissDlg(hwnd, 0); … … 271 272 NOTE_LISTBOX, 272 273 LM_INSERTITEM, MPFROM2SHORT(LIT_END, 0), mp2); 273 free((CHAR *) mp2);274 xfree((CHAR *) mp2); 274 275 } 275 276 { … … 472 473 } 473 474 } 474 free(s);475 xfree(s); 475 476 } 476 477 }
Note:
See TracChangeset
for help on using the changeset viewer.