update to newest git bitcoin core

This commit is contained in:
Wladimir J. van der Laan 2011-06-05 19:15:15 +02:00
parent b7726d924e
commit 822f2e3ddf
10 changed files with 93 additions and 44 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;
}