gtphub_test: fix compilation error on gcc 10.2.0

Ensure dump && hex can't be zero.

gtphub_test.c: In function ‘_reply_is.constprop’:
gtphub_test.c:535:3: error: ‘%s’ directive argument is null [-Werror=format-overflow=]

Change-Id: Id27bf46855a228935fe706584f9b27cf3facf623
This commit is contained in:
Alexander Couzens 2020-10-02 00:13:42 +02:00 committed by laforge
parent 76059b8179
commit 016a68bb1e
1 changed files with 2 additions and 0 deletions

View File

@ -529,6 +529,8 @@ static int _reply_is(const char *hex, const char *file, int line)
const char *dump = osmo_hexdump_nospc(reply_buf, len);
int cmp = strcmp(dump, hex);
OSMO_ASSERT(dump && hex);
if (cmp != 0) {
printf("\n%s:%d: reply_is(): MISMATCH\n"
" expecting:\n'%s'\n"