Added missing fclose to ApiServerMHD::accessHandlerCallback.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8454 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2015-06-14 21:34:41 +00:00
parent b61355e894
commit d17a7faf93

View File

@ -565,6 +565,7 @@ int ApiServerMHD::accessHandlerCallback(MHD_Connection *connection,
MHD_add_response_header(resp, "Content-Type", type);
secure_queue_response(connection, MHD_HTTP_OK, resp);
MHD_destroy_response(resp);
fclose(fd);
return MHD_YES;
}