Fix a deadlock if we pass an empty string to the journal insert.

This commit is contained in:
Andreas Schneider 2008-03-04 11:29:43 +01:00
Родитель 7415bb1ea3
Коммит 8ee1252276
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -230,6 +230,10 @@ int csync_journal_insert(CSYNC *ctx, const char *statement) {
sqlite3_stmt *stmt;
const char *tail;
if (!statement[0]) {
return 0;
}
do {
/* compile SQL program into a virtual machine, reattempteing if busy */
do {