summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/conf/conf_mod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/conf/conf_mod.c')
-rw-r--r--src/lib/libcrypto/conf/conf_mod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/conf/conf_mod.c b/src/lib/libcrypto/conf/conf_mod.c
index e286378cb1..ee9c677d9b 100644
--- a/src/lib/libcrypto/conf/conf_mod.c
+++ b/src/lib/libcrypto/conf/conf_mod.c
@@ -588,7 +588,7 @@ int CONF_parse_list(const char *list_, int sep, int nospc,
588 { 588 {
589 if (nospc) 589 if (nospc)
590 { 590 {
591 while(isspace((unsigned char)*lstart)) 591 while(*lstart && isspace((unsigned char)*lstart))
592 lstart++; 592 lstart++;
593 } 593 }
594 p = strchr(lstart, sep); 594 p = strchr(lstart, sep);