summaryrefslogtreecommitdiffstats
path: root/common/t-stringhelp.c
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2020-09-18 03:20:23 +0200
committerNIIBE Yutaka <gniibe@fsij.org>2020-09-18 03:20:23 +0200
commitdfdcf14738976c6b236f4fa1c3b68af351024b3c (patch)
tree40a28138343e29b0c03c97653e22223e8de2f116 /common/t-stringhelp.c
parentscd: Clear PIN cache when changing key attributes. (diff)
downloadgnupg2-dfdcf14738976c6b236f4fa1c3b68af351024b3c.tar.xz
gnupg2-dfdcf14738976c6b236f4fa1c3b68af351024b3c.zip
common,agent,dirmngr,g10,tools: Fix split_fields API.
* common/stringhelp.h (split_fields): Use const * for the strings in the ARRAY. (split_fields_colon): Likewise. * common/stringhelp.c (split_fields, split_fields_colon): Fix the implementation. * agent/call-scd.c, agent/command.c: Follow the change. * common/t-stringhelp.c, dirmngr/loadswdb.c: Likewise. * g10/call-agent.c, tools/card-call-scd.c: Likewise. * tools/card-yubikey.c, tools/gpg-card.c: Likewise. * tools/gpg-card.h, tools/gpg-wks-client.c: Likewise. * tools/gpgconf-comp.c, tools/gpgconf.c: Likewise. * tools/wks-util.c: Likewise. -- The strings in the ARRAY don't need to be released by caller, as those are references. It's easier to follow the code when it's explicitly const *. Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'common/t-stringhelp.c')
-rw-r--r--common/t-stringhelp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/t-stringhelp.c b/common/t-stringhelp.c
index 7c6fb8022..6f7f6f7af 100644
--- a/common/t-stringhelp.c
+++ b/common/t-stringhelp.c
@@ -717,7 +717,7 @@ test_split_fields (void)
};
int tidx;
- char *fields[10];
+ const char *fields[10];
int field_count_expected, nfields, field_count, i;
char *s2;
@@ -792,7 +792,7 @@ test_split_fields_colon (void)
};
int tidx;
- char *fields[10];
+ const char *fields[10];
int field_count_expected, nfields, field_count, i;
char *s2;