Fixed realloc/delete[] mismatch (thank sawce), corrected some whitespace.

This commit is contained in:
David Anderson 2008-09-21 14:05:13 -07:00
parent 4517031861
commit 6192efc078

View File

@ -202,7 +202,7 @@ public:
} }
~StaticCharBuf() ~StaticCharBuf()
{ {
delete [] buffer; free(buffer);
} }
char* GetWithSize(size_t len) char* GetWithSize(size_t len)
{ {