From eb63ce5df5ceb8415c0345f4604eccaf09972fc5 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 24 Apr 2017 21:36:04 +0000 Subject: [PATCH] Free results --- include/dba.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/dba.php b/include/dba.php index beb72bbc2c..4eaa1e314a 100644 --- a/include/dba.php +++ b/include/dba.php @@ -709,6 +709,7 @@ class dba { case 'pdo': return $stmt->closeCursor(); case 'mysqli': + return $stmt->free_result(); return $stmt->close(); case 'mysql': return mysql_free_result($stmt);