зеркало из https://github.com/nextcloud/desktop.git
Fix a deadlock if we pass an empty string to the journal insert.
This commit is contained in:
Родитель
7415bb1ea3
Коммит
8ee1252276
|
@ -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 {
|
||||
|
|
Загрузка…
Ссылка в новой задаче