Explorar el Código

cJSON_strdup: Check for NULL string

Max Bruckner hace 8 años
padre
commit
1df987a170
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      cJSON.c

+ 5 - 0
cJSON.c

@@ -88,6 +88,11 @@ static char* cJSON_strdup(const char* str)
     size_t len = 0;
     char *copy = NULL;
 
+    if (str == NULL)
+    {
+        return NULL;
+    }
+
     len = strlen(str) + 1;
     if (!(copy = (char*)cJSON_malloc(len)))
     {