ecore_con - give error output if port num is invalid
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Thu, 25 Jan 2018 16:03:44 +0000 (01:03 +0900)
committerWonki Kim <wonki_.kim@samsung.com>
Tue, 3 Apr 2018 09:50:10 +0000 (18:50 +0900)
src/lib/ecore_con/ecore_con_legacy.c

index a074008..32a524b 100644 (file)
@@ -1672,7 +1672,11 @@ ecore_con_server_add(Ecore_Con_Type compl_type,
 
    EINA_SAFETY_ON_NULL_RETURN_VAL(name, NULL);
    /* The allowable port number is an unsigned 16-bit integer, so 1-65535, 0 is reserved */
-   if (port < 0 || port > 65535) return NULL;
+   if ((port < 0) || (port > 65535))
+     {
+        ERR("Port %i invalid (0 <= port <= 65535)");
+        return NULL;
+     }
 
    type = compl_type & ECORE_CON_TYPE;