commit 32ce0da44aed9b89df61c6c5afa61d84c7756f00 parent bfa25cae37a69a469240060d79b017f55f6625b7 Author: Dan Stillman <dstillman@zotero.org> Date: Fri, 16 Jun 2006 22:17:46 +0000 Restore the statement.reset() in valueQuery() that I accidentally deleted in r216 Diffstat:
| M | chrome/chromeFiles/content/scholar/xpcom/db.js | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/chrome/chromeFiles/content/scholar/xpcom/db.js b/chrome/chromeFiles/content/scholar/xpcom/db.js @@ -112,7 +112,9 @@ Scholar.DB = new function(){ return false; } - return _getTypedValue(statement, 0); + var value = _getTypedValue(statement, 0); + statement.reset(); + return value; }