From e8aa8ed20b16a8b4422ff1554c41b59583dad4c3 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Thu, 5 Apr 2007 23:14:25 +0000 Subject: [PATCH] Remove NULL path check so we can create new .order files if they do not exist. SVN revision: 29399 --- src/bin/e_order.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bin/e_order.c b/src/bin/e_order.c index ccd254ebd..46d1294e8 100644 --- a/src/bin/e_order.c +++ b/src/bin/e_order.c @@ -35,8 +35,6 @@ e_order_new(const char *path) { E_Order *eo; - if ((!path) || (!ecore_file_exists(path))) return NULL; - eo = E_OBJECT_ALLOC(E_Order, E_ORDER_TYPE, _e_order_free); if (!eo) return NULL;