Changeset 272
- Timestamp:
- 09/15/06 17:46:10 (2 years ago)
- Files:
-
- eaccelerator/branches/0.9.5/ChangeLog (modified) (1 diff)
- eaccelerator/branches/0.9.5/eaccelerator.c (modified) (1 diff)
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/eaccelerator.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/branches/0.9.5/ChangeLog
r271 r272 7 7 * only put the function that has the same name as the class as contructor 8 8 if there isn't a __construct function. This fixes ticket #172 9 * Don't free memory with efree that has been allocated from the eA shm cache. 10 This should fix A LOT of bugreports in Trac and on SF. It fixes #171 but 11 I think also some other bugs. 9 12 10 13 2006-08-29 Hans Rakers <hans at parse dot nl> eaccelerator/branches/0.9.5/eaccelerator.c
r268 r272 1807 1807 p = p->next; 1808 1808 if (r->entry != NULL && r->entry->use_cnt < 0) { 1809 e free(r->entry);1809 eaccelerator_free(r->entry); 1810 1810 } 1811 1811 efree(r); eaccelerator/trunk/ChangeLog
r271 r272 5 5 * only put the function that has the same name as the class as contructor 6 6 if there isn't a __construct function. This fixes ticket #172 7 * Don't free memory with efree that has been allocated from the eA shm cache. 8 This should fix A LOT of bugreports in Trac and on SF. It fixes #171 but 9 I think also some other bugs. 7 10 8 11 2006-08-29 Hans Rakers <hans at parse dot nl> eaccelerator/trunk/eaccelerator.c
r267 r272 1523 1523 p = p->next; 1524 1524 if (r->entry != NULL && r->entry->use_cnt < 0) { 1525 e free(r->entry);1525 eaccelerator_free(r->entry); 1526 1526 } 1527 1527 efree(r);