Bug 1024686 - Add missing return in Sqlite.jsm. r=mak

This commit is contained in:
David Rajchenbach-Teller 2014-06-12 12:53:00 -04:00
parent bf7aa4fc11
commit 511052dbd4

View File

@ -741,6 +741,7 @@ function openConnection(options) {
if (!connection) {
log.warn("Could not open connection: " + status);
deferred.reject(new Error("Could not open connection: " + status));
return;
}
log.info("Connection opened");
try {