m_close() rather than close()

This commit is contained in:
Matt Johnston 2016-03-15 23:03:59 +08:00
parent 6b5c6af613
commit c67fc5693a

View File

@ -119,7 +119,7 @@ fail:
/* cleanup */ /* cleanup */
m_free(chansess->x11authprot); m_free(chansess->x11authprot);
m_free(chansess->x11authcookie); m_free(chansess->x11authcookie);
close(fd); m_close(fd);
return DROPBEAR_FAILURE; return DROPBEAR_FAILURE;
} }