Bug 812627 - Use the proper db connection when retrieving the last insert ID for downloads. r=mak

This commit is contained in:
Josh Matthews 2012-11-19 15:22:58 +00:00
Родитель 65163d097a
Коммит 8277aa5e36
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -883,7 +883,7 @@ nsDownloadManager::AddDownloadToDB(const nsAString &aName,
NS_ENSURE_SUCCESS(rv, 0);
int64_t id = 0;
rv = mDBConn->GetLastInsertRowID(&id);
rv = dbConn->GetLastInsertRowID(&id);
NS_ENSURE_SUCCESS(rv, 0);
aNewGUID = guid;