e order - do null check for path and return before alloc of obj

fix coverity CID 1428757
enlightenment-0.24
Carsten Haitzler 4 years ago
parent b660ef8937
commit 01f710335a
  1. 8
      src/bin/e_order.c

@ -62,13 +62,15 @@ e_order_new(const char *path)
{
E_Order *eo;
eo = E_OBJECT_ALLOC(E_Order, E_ORDER_TYPE, _e_order_free);
if (!eo) return NULL;
if (!path)
{
ERR("null order");
return NULL;
}
eo = E_OBJECT_ALLOC(E_Order, E_ORDER_TYPE, _e_order_free);
if (!eo) return NULL;
if (path[0] != '/')
{
ERR("not full");

Loading…
Cancel
Save