fix resource unavailable warning
authorAlan <alan@roojs.com>
Thu, 21 Apr 2022 02:58:40 +0000 (10:58 +0800)
committerAlan <alan@roojs.com>
Thu, 21 Apr 2022 02:58:40 +0000 (10:58 +0800)
File/Convert.php

index 37dcd88..b63d201 100644 (file)
@@ -317,7 +317,9 @@ class File_Convert
             flush();
         }
         
-        fclose($fh);
+        if ($fh) {
+            fclose($fh);
+        }
         
         if ($delete_after) {
             unlink($fn);