public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH] list: fix a bug
Date: Wed, 19 Jul 2017 15:21:51 +0200	[thread overview]
Message-ID: <1500470511-21430-1-git-send-email-jonatan.schlag@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1276 bytes --]

When the list is called "list" we have a problem because
${list}="list"
and ${!list}="list"
This creates effects nobody wants and which are also not so easy to understand.
To avoid such problems in the future we now throw an assertation when the list is called list.

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/functions/functions.list | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/functions/functions.list b/src/functions/functions.list
index 26ba6c3..ff73b04 100644
--- a/src/functions/functions.list
+++ b/src/functions/functions.list
@@ -25,6 +25,7 @@
 list_append() {
 	local list=${1}
 	assert isset list
+	assert [ ${list} != "list" ]
 	shift
 
 	local arg
@@ -40,6 +41,7 @@ list_append_one() {
 	shift
 
 	assert isset list
+	assert [ ${list} != "list" ]
 
 	if [ -n "${!list}" ]; then
 		printf -v ${list} -- "${!list} $@"
@@ -53,6 +55,7 @@ list_remove() {
 	shift
 
 	assert isset list
+	assert [ ${list} != "list" ]
 
 	local _list k
 	for k in ${!list}; do
@@ -127,6 +130,10 @@ list_join() {
 	local list=${1}
 	local delim=${2}
 
+	assert isset list
+	assert isset delim
+	assert [ ${list} != "list" ]
+
 	local ret
 	printf -v ret "${delim}%s" ${!list}
 
-- 
2.6.3


                 reply	other threads:[~2017-07-19 13:21 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1500470511-21430-1-git-send-email-jonatan.schlag@ipfire.org \
    --to=jonatan.schlag@ipfire.org \
    --cc=network@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox