Use FindClose for handle from FindFirstFile in http-server.c

Noted by Miles Chan as issue #145
This commit is contained in:
Nick Mathewson 2014-08-29 14:31:07 -04:00
parent 1a8295a316
commit 6466e88ac1

View File

@ -264,7 +264,7 @@ send_document_cb(struct evhttp_request *req, void *arg)
#endif #endif
evbuffer_add_printf(evb, "</ul></body></html>\n"); evbuffer_add_printf(evb, "</ul></body></html>\n");
#ifdef WIN32 #ifdef WIN32
CloseHandle(d); FindClose(d);
#else #else
closedir(d); closedir(d);
#endif #endif