Fixed bug that skipped first entry in char_pp_2_string_list
This commit is contained in:
parent
b2130fc267
commit
6855de9ec8
|
@ -6,9 +6,10 @@ s48_value char_pp_2_string_list(char **vec){
|
||||||
|
|
||||||
S48_DECLARE_GC_PROTECT(1);
|
S48_DECLARE_GC_PROTECT(1);
|
||||||
S48_GC_PROTECT_1(list);
|
S48_GC_PROTECT_1(list);
|
||||||
|
|
||||||
while (*(++ptr)){
|
while (ptr && *(ptr)){
|
||||||
list = s48_cons (s48_enter_string (*ptr), list);
|
list = s48_cons (s48_enter_string (*ptr), list);
|
||||||
|
ptr++;
|
||||||
}
|
}
|
||||||
S48_GC_UNPROTECT();
|
S48_GC_UNPROTECT();
|
||||||
return list;
|
return list;
|
||||||
|
|
Loading…
Reference in New Issue