commit 9d78bd70241e3b62a7dee52ad28654b64913b544
parent cc99a3963004eb577efe4f66e3691bd237fba22d
Author: Simon Kornblith <simon@simonster.com>
Date: Sun, 20 Mar 2011 09:09:54 +0000
close storage stream in Fx 4 (the base stream should already be closed)
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js
@@ -226,6 +226,7 @@ Zotero.Integration = new function() {
Components.interfaces.nsIConverterInputStream.DEFAULT_REPLACEMENT_CHARACTER);
var out = {};
converterInputStream.readString(count, out);
+ inputStream.close();
_parseIntegrationPipeCommand(out.value);
}};