fix compiler warning

This commit is contained in:
Yang Tse 2010-02-14 16:37:22 +00:00
parent 68d83a8142
commit 2268657272
1 changed files with 2 additions and 2 deletions

View File

@ -957,13 +957,13 @@ static int send_doc(curl_socket_t sock, struct httprequest *req)
return 0;
}
else {
error = getpart(&buffer, &count, "reply", partbuf, stream);
error = getpart(&ptr, &count, "reply", partbuf, stream);
fclose(stream);
if(error) {
logmsg("getpart() failed with error: %d", error);
return 0;
}
ptr = (char *)buffer;
buffer = ptr;
}
if(got_exit_signal) {