From: Paul Hänsch Date: Mon, 26 Jul 2021 22:55:39 +0000 (+0200) Subject: bugfix: faulty check in update and append X-Git-Url: https://git.plutz.net/?p=cgilite;a=commitdiff_plain;h=8be65ce87fa07416c4d923cdc358ad885e49aaf7 bugfix: faulty check in update and append --- diff --git a/storage.sh b/storage.sh index 355bd56..61eec88 100755 --- a/storage.sh +++ b/storage.sh @@ -161,7 +161,7 @@ DBM() { update|replace) k="$1" key="$(STRING "$1")" value="$(STRING "$2")" LOCK "$file" || return 1 - if ! DBM check "$k"; then + if ! DBM "$file" check "$k"; then RELEASE "$file" return 1 fi @@ -178,7 +178,7 @@ DBM() { append) key="$(STRING "$1")" value="$(STRING "$2")" LOCK "$file" || return 1 - if ! DBM check "$1"; then + if ! DBM "$file" check "$1"; then RELEASE "$file" return 1 fi