Unlock g_gate_list_mtx mutex when we cannot allocate unit number.

MT5 candidate.

PR:		kern/72253
Submitted by:	Ivan Voras <ivoras@fer.hr>
This commit is contained in:
pjd 2004-10-02 15:03:26 +00:00
parent c921eecaf5
commit 1ab679547d

View File

@ -412,6 +412,7 @@ g_gate_create(struct g_gate_ctl_create *ggio)
mtx_lock(&g_gate_list_mtx);
ggio->gctl_unit = g_gate_getunit(ggio->gctl_unit);
if (ggio->gctl_unit == -1) {
mtx_unlock(&g_gate_list_mtx);
mtx_destroy(&sc->sc_inqueue_mtx);
mtx_destroy(&sc->sc_outqueue_mtx);
free(sc, M_GATE);