We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e150bf9 commit f2d1dfdCopy full SHA for f2d1dfd
samples/wifi/ble_coex/src/main.c
@@ -284,6 +284,10 @@ static void udp_upload_results_cb(enum zperf_status status,
284
break;
285
case ZPERF_SESSION_FINISHED:
286
LOG_INF("Wi-Fi benchmark: Upload completed!");
287
+ if (!result) {
288
+ LOG_ERR("Result is NULL, Zperf session error");
289
+ break;
290
+ }
291
if (result->client_time_in_us != 0U) {
292
client_rate_in_kbps = (uint32_t)
293
(((uint64_t)result->nb_packets_sent *
0 commit comments