Fix compiler warning: ISO C90 forbids mixed declarations and code

This commit is contained in:
Yang Tse 2009-11-18 11:53:31 +00:00
Родитель 2f6dcaa644
Коммит e8fd5d8062
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -211,10 +211,10 @@ void *curl_dorealloc(void *ptr, size_t wantedsize,
{
struct memdebug *mem=NULL;
assert(wantedsize != 0);
size_t size = sizeof(struct memdebug)+wantedsize;
assert(wantedsize != 0);
if(countcheck("realloc", line, source))
return NULL;