diff options
Diffstat (limited to 'sys/netatm/uni/unisig_util.c')
-rw-r--r-- | sys/netatm/uni/unisig_util.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netatm/uni/unisig_util.c b/sys/netatm/uni/unisig_util.c index f1858bd..41109a5 100644 --- a/sys/netatm/uni/unisig_util.c +++ b/sys/netatm/uni/unisig_util.c @@ -92,7 +92,7 @@ unisig_free_msg(msg) ie = msg->msg_ie_vec[i]; while (ie) { ienxt = ie->ie_next; - atm_free(ie); + uma_zfree(unisig_ie_zone, ie); ie = ienxt; } } @@ -100,10 +100,9 @@ unisig_free_msg(msg) /* * Finally, free the message structure itself */ - atm_free(msg); + uma_zfree(unisig_msg_zone, msg); } - /* * Verify a VCCB * |