Changeset 410
- Timestamp:
- 02/24/10 12:07:38 (5 months ago)
- Files:
-
- eaccelerator/branches/0.9.6/ChangeLog (modified) (1 diff)
- eaccelerator/branches/0.9.6/eaccelerator.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/branches/0.9.6/ChangeLog
r404 r410 1 2010-02-24 Hans Rakers <hans at react.nl> 2 3 * Fixed double free in eaccelerator_globals_dtor. This closes 4 ticket #404 5 1 6 2010-02-18 Hans Rakers <hans at react.nl> 2 7 eaccelerator/branches/0.9.6/eaccelerator.c
r398 r410 1671 1671 p = eag->pattern_list; 1672 1672 while (p != NULL) { 1673 q = p ;1673 q = p->next; 1674 1674 free(p->pattern); 1675 1675 free(p); 1676 p = q ->next;1676 p = q; 1677 1677 } 1678 1678 eag->pattern_list = NULL;