-fix
authorSchanzenbach, Martin <mschanzenbach@posteo.de>
Mon, 19 Dec 2016 15:54:53 +0000 (16:54 +0100)
committerSchanzenbach, Martin <mschanzenbach@posteo.de>
Mon, 19 Dec 2016 15:54:53 +0000 (16:54 +0100)
src/jsonapi/jsonapi_resource.c

index 85bca10eeb860ac167a7046f25721ccfab740d33..4a166f58a411f67501076568ddb3503031a924ca 100644 (file)
@@ -92,9 +92,9 @@ GNUNET_JSONAPI_resource_new (const char *type, const char *id)
 {
   struct GNUNET_JSONAPI_Resource *res;
 
-  if ( (NULL == type) || (0 == strlen (type)) )
+  if (NULL == type)
     return NULL;
-  if ( (NULL == id) || (0 == strlen (id)) )
+  if (NULL == id)
     return NULL;
 
   res = GNUNET_new (struct GNUNET_JSONAPI_Resource);