FileHandle: only close on valid fd

When fd < 0, we didn't open the fd given the fd is invalid. So we won't
need to close the fd as well. The current implement prints false alarm
on move constructer/assignment.

Signed-off-by: Hao Jiang <jianghao@google.com>
Change-Id: Ib6e0227fd1ba865ca037e8e5f8d1fc0dcc304185
diff --git a/src/FileHandle.cpp b/src/FileHandle.cpp
index c77fc3d..af32192 100644
--- a/src/FileHandle.cpp
+++ b/src/FileHandle.cpp
@@ -34,7 +34,7 @@
 
 FileHandle::~FileHandle()
 {
-    if (fd != 0)
+    if (fd >= 0)
     {
         int r = close(fd);
         if (r < 0)