Fixes #240 and #244 - delete delete[] mismatch.

This commit is contained in:
Matt Corallo 2011-05-26 02:24:01 +02:00
parent a9ea3cd76d
commit 77172463a3
1 changed files with 2 additions and 2 deletions

View File

@ -271,7 +271,7 @@ string strprintf(const char* format, ...)
if (ret >= 0 && ret < limit)
break;
if (p != buffer)
delete p;
delete[] p;
limit *= 2;
p = new char[limit];
if (p == NULL)
@ -279,7 +279,7 @@ string strprintf(const char* format, ...)
}
string str(p, p+ret);
if (p != buffer)
delete p;
delete[] p;
return str;
}