openocd: fix simple cases of NULL comparison
[fw/openocd] / src / target / quark_d20xx.c
index 9169379bb5da2ff508c43533ebcf860aac33b0fc..211245d7db358ca2598e21b5c1cd478c579cc8ff 100644 (file)
@@ -46,7 +46,7 @@
 static int quark_d20xx_target_create(struct target *t, Jim_Interp *interp)
 {
        struct x86_32_common *x86_32 = calloc(1, sizeof(struct x86_32_common));
-       if (x86_32 == NULL) {
+       if (!x86_32) {
                LOG_ERROR("%s out of memory", __func__);
                return ERROR_FAIL;
        }