Changeset 304
- Timestamp:
- Nov 13, 2010, 10:51:12 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r303 r304 1 1 2.8.1: 2 * Fix null pointer dereference in config parse handler for SetMailAlias 3 (reported by Sergey) 2 4 * Fix incorrect memset() in sh_kern.c (passed struct by value...), 3 5 reported by Roman and Stefan -
trunk/src/sh_nmail.c
r276 r304 234 234 SH_FREE(array); 235 235 236 if (newalias &&newalias->recipient_list == NULL)236 if (newalias == NULL || newalias->recipient_list == NULL) 237 237 { 238 SH_FREE(newalias); 238 if (newalias) 239 SH_FREE(newalias); 239 240 goto err; 240 241 }
Note:
See TracChangeset
for help on using the changeset viewer.