From b433a6301374a3c51641ec68454d0d07a5fe10f1 Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Tue, 5 Aug 2003 20:34:50 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=1992 --- html/ops/db_ops.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/html/ops/db_ops.inc b/html/ops/db_ops.inc index de69e4b645..e0fa12c012 100644 --- a/html/ops/db_ops.inc +++ b/html/ops/db_ops.inc @@ -62,6 +62,7 @@ class SqlQueryString { $count_query = "select count(*) as cnt from $this->table $this->query"; $result = mysql_query($count_query); $res = mysql_fetch_object($result); + mysql_free_result($result); return $res->cnt; }