summaryrefslogtreecommitdiff
path: root/offline.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-02-04 14:20:25 +0300
committerAndrew Dolgov <[email protected]>2009-02-04 14:20:25 +0300
commit03c96380edf86bc2b4dd44000310c559afeb6d1f (patch)
treef2d9bf82adc1434381e8ed4c00495919e8095a7d /offline.js
parent3034277ab5895723f10addad06d157d54bf188fa (diff)
offline: properly close resultsets with rs.close()
Diffstat (limited to 'offline.js')
-rw-r--r--offline.js23
1 files changed, 19 insertions, 4 deletions
diff --git a/offline.js b/offline.js
index 8358bc479..dbf1170ed 100644
--- a/offline.js
+++ b/offline.js
@@ -51,6 +51,8 @@ function view_offline(id, feed_id) {
update_local_feedlist_counters();
}
+ rs.close();
+
return false;
} catch (e) {
@@ -141,8 +143,6 @@ function viewfeed_offline(feed_id, subop, is_cat, subop_param, skip_history, off
}
- var rs;
-
var limit = 30;
var toolbar_form = document.forms["main_toolbar_form"];
@@ -252,6 +252,8 @@ function viewfeed_offline(feed_id, subop, is_cat, subop_param, skip_history, off
rs.next();
line_num++;
}
+
+ rs.close();
if (offset == 0) {
tmp += "</table>";
@@ -333,6 +335,8 @@ function render_offline_feedlist() {
rs.next();
}
+ rs.close();
+
tmp += "</ul>";
render_feedlist(tmp);
@@ -449,6 +453,7 @@ function update_offline_data(stage) {
var query = "backend.php?op=rpc&subop=download&stage=" + stage;
var rs = db.execute("SELECT MAX(id), MIN(id) FROM articles");
+
if (rs.isValidRow() && rs.field(0)) {
var offline_dl_max_id = rs.field(0);
var offline_dl_min_id = rs.field(1);
@@ -457,6 +462,8 @@ function update_offline_data(stage) {
query = query + "&cidb=" + offline_dl_min_id;
}
+ rs.close();
+
new Ajax.Request(query, {
onComplete: function(transport) {
offline_download_parse(stage, transport);
@@ -530,6 +537,8 @@ function update_local_feedlist_counters() {
rs.next();
}
+ rs.close();
+
set_feedlist_counter(-4, get_local_feed_unread(-4));
set_feedlist_counter(-1, get_local_feed_unread(-1));
@@ -555,12 +564,18 @@ function get_local_feed_unread(id) {
rs = db.execute("SELECT SUM(unread) FROM articles WHERE feed_id = ?", [id]);
}
+ var a = false;
+
if (rs.isValidRow()) {
- return rs.field(0);
+ a = rs.field(0);
} else {
- return 0;
+ a = 0;
}
+ rs.close();
+
+ return a;
+
} catch (e) {
exception_error("get_local_feed_unread", e);
}