missing NULL terminator in set_config_xmaster
commit22aecbf47a50da39cc72af8f6771393fa98d4263
authorSven M. Hallberg <pesco@khjk.org>
Tue, 16 May 2023 19:23:44 +0000 (16 19:23 +0000)
committerRoland Lutz <rlutz@hedmen.org>
Sun, 21 May 2023 16:41:51 +0000 (21 18:41 +0200)
treeeeec234e012d05ac39e20ddb487cf1b50a04f795
parentb8e430071bd4a05b740a00bf201ef30140a4a11f
missing NULL terminator in set_config_x

The scheme function set_config_x allocates a list that is freed with
g_strfreev() on unwind.  The latter expects a NULL-terminated list of
pointers, but the null pointer is not added.  This patch fixes it.

Closes-bug: lp-2019899
libgeda/src/scheme_config.c