From 39f5a61eb8fe16979cfa07e2f5c52a36b24e7ebb Mon Sep 17 00:00:00 2001 From: Brendan O'Dea Date: Thu, 28 Oct 2004 03:26:41 +0000 Subject: [PATCH] shared_malloc returns NULL on failure --- tbf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tbf.c b/tbf.c index 0f6cf5b..459c049 100644 --- a/tbf.c +++ b/tbf.c @@ -1,6 +1,6 @@ // L2TPNS: token bucket filters -char const *cvs_id_tbf = "$Id: tbf.c,v 1.6 2004-09-02 04:18:07 fred_nerk Exp $"; +char const *cvs_id_tbf = "$Id: tbf.c,v 1.7 2004-10-28 03:26:41 bodea Exp $"; #define _GNU_SOURCE @@ -21,7 +21,7 @@ static void tbf_run_queue(int tbf_id); void init_tbf(void) { - if ((filter_list = shared_malloc(sizeof(*filter_list) * MAXTBFS)) == MAP_FAILED) + if (!(filter_list = shared_malloc(sizeof(*filter_list) * MAXTBFS))) return; filter_list_size = MAXTBFS; -- 2.20.1