diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2017-10-07 04:45:01 +0200 |
---|---|---|
committer | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2017-10-10 14:38:10 +0000 |
commit | 4b7c791e15e921ce5427c531f740df7474c6a1cb (patch) | |
tree | 88f296e22010fd692f9f1730791b3c159a1c5657 /tests/gsm23003 | |
parent | f624546ed1336ef2c092a254fddea6b904a9e274 (diff) |
gsm: make osmo_imsi_str_valid() NULL-safe
No callers that would pass NULL exist, but let's check against NULL from the
start.
Fixup for recent change I1e94f5b0717b947d2a7a7d36bacdf04a75cb3522.
Change-Id: I111fbf29228929f2cd6ffa06bcb1f69da223224e
Diffstat (limited to 'tests/gsm23003')
-rw-r--r-- | tests/gsm23003/gsm23003_test.c | 2 | ||||
-rw-r--r-- | tests/gsm23003/gsm23003_test.ok | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/gsm23003/gsm23003_test.c b/tests/gsm23003/gsm23003_test.c index 682f1626..a408b73d 100644 --- a/tests/gsm23003/gsm23003_test.c +++ b/tests/gsm23003/gsm23003_test.c @@ -50,6 +50,7 @@ static struct { { "1234567\n123456", false }, { "123456\t123456", false }, { "123456\r123456", false }, + { NULL, false }, }; bool test_valid_imsi() @@ -92,6 +93,7 @@ static struct { { "1234567\n123456", false }, { "123456\t123456", false }, { "123456\r123456", false }, + { NULL, false }, }; bool test_valid_msisdn() diff --git a/tests/gsm23003/gsm23003_test.ok b/tests/gsm23003/gsm23003_test.ok index 777451a8..7d7ffd1d 100644 --- a/tests/gsm23003/gsm23003_test.ok +++ b/tests/gsm23003/gsm23003_test.ok @@ -19,6 +19,7 @@ 123456' 17: expect=false result=false imsi='123456 123456' 18: expect=false result=false imsi='123456
123456' +19: expect=false result=false imsi='(null)' ----- test_valid_msisdn 0: expect=false result=false msisdn='' 1: expect=false result=false msisdn=' ' @@ -40,3 +41,4 @@ 123456' 17: expect=false result=false msisdn='123456 123456' 18: expect=false result=false msisdn='123456
123456' +19: expect=false result=false msisdn='(null)' |