discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=01abad3f646ee290fc8809d54da2bb0049474e5c

commit 01abad3f646ee290fc8809d54da2bb0049474e5c
Author: Mike Blumenkrantz <zm...@samsung.com>
Date:   Thu Mar 13 12:41:53 2014 -0400

    bugfix: efm_op no longer tries to close invalid fds during delete ops
    
    CID 1132741
---
 src/bin/e_fm_op.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_fm_op.c b/src/bin/e_fm_op.c
index f7fd78b..7e1bc3b 100644
--- a/src/bin/e_fm_op.c
+++ b/src/bin/e_fm_op.c
@@ -1796,7 +1796,7 @@ _e_fm_op_destroy_atom(E_Fm_Op_Task *task)
    return 1;
 
 finish:
-   close(fd);
+   if (fd != -1) close(fd);
    fd = -1;
    E_FREE(buf);
    task->finished = 1;

-- 


Reply via email to