mslookup_client.c: fix dereferencing null pointer

Fixes: CID#207547
Change-Id: If19e1e68fad76a3d65788ac208da7dde1f8745c1
This commit is contained in:
Oliver Smith 2020-01-13 14:51:50 +01:00
parent fbe4929543
commit f55f605931
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ void osmo_mslookup_client_rx_result(struct osmo_mslookup_client *client, uint32_
if (!req) {
LOGP(DMSLOOKUP, LOGL_ERROR,
"Internal error: Got mslookup result for a request that does not exist (handle %u)\n",
req->request_handle);
request_handle);
return;
}