]> git.droids-corp.org - dpdk.git/blobdiff - app/test/test_barrier.c
test/barrier: fix allocation check
[dpdk.git] / app / test / test_barrier.c
index c219d56020f32ba483fbcb55da210918b5d3f751..ae37b1e5c21a10cd446f3da849b93cd5bf53d23a 100644 (file)
@@ -202,7 +202,7 @@ plock_test(uint32_t iter, enum plock_use_type utype)
        printf("%s(iter=%u, utype=%u) started on %u lcores\n",
                __func__, iter, utype, n);
 
-       if (pt == NULL || lpt == NULL) {
+       if (pt == NULL || lpt == NULL || sum == NULL) {
                printf("%s: failed to allocate memory for %u lcores\n",
                        __func__, n);
                free(pt);