[PATCH] openbsc[master]: bsc_ctrl: Ensure we don't pass NULL string into strtok_r()

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Harald Welte gerrit-no-reply at lists.osmocom.org
Sat Nov 26 14:08:47 UTC 2016


Review at  https://gerrit.osmocom.org/1323

bsc_ctrl: Ensure we don't pass NULL string into strtok_r()

Change-Id: I03bea132377c0136b55b6fdad99a5d92da12e692
Fixes: Coverity CID 135180
---
M openbsc/src/osmo-bsc/osmo_bsc_ctrl.c
1 file changed, 1 insertion(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/openbsc refs/changes/23/1323/1

diff --git a/openbsc/src/osmo-bsc/osmo_bsc_ctrl.c b/openbsc/src/osmo-bsc/osmo_bsc_ctrl.c
index 3010b55..78647d3 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_ctrl.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_ctrl.c
@@ -612,6 +612,7 @@
 	char *saveptr = NULL;
 	char *inp, *cic, *alert, *text;
 
+	OSMO_ASSERT(cmd);
 	inp = talloc_strdup(cmd, value);
 
 	cic = strtok_r(inp, ",", &saveptr);

-- 
To view, visit https://gerrit.osmocom.org/1323
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I03bea132377c0136b55b6fdad99a5d92da12e692
Gerrit-PatchSet: 1
Gerrit-Project: openbsc
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>



More information about the gerrit-log mailing list