From 3efd53b97a5ccf7e5644abec5a9c4921e04a0853 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Mon, 23 Nov 2015 00:42:22 +0100 Subject: [PATCH] LegacyStorage: add missing fclose --- library/Businessprocess/Storage/LegacyStorage.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/Businessprocess/Storage/LegacyStorage.php b/library/Businessprocess/Storage/LegacyStorage.php index 288537b..fc2bf18 100644 --- a/library/Businessprocess/Storage/LegacyStorage.php +++ b/library/Businessprocess/Storage/LegacyStorage.php @@ -159,6 +159,8 @@ class LegacyStorage extends Storage } } } + + fclose($fh); return $header; }