Minor fix to deallocate STRING_FRAG segments properly

svn-id: r39299
This commit is contained in:
Lars Skovlund 2009-03-10 17:41:58 +00:00
parent d8824d631a
commit 49393c79e5

View File

@ -298,6 +298,8 @@ int SegManager::deallocate(int seg, bool recursive) {
case MEM_OBJ_RESERVED:
free(mobj->data.reserved);
break;
case MEM_OBJ_STRING_FRAG:
break;
default:
fprintf(stderr, "Deallocating segment type %d not supported!\n",
mobj->type);