Check for valid indices in substring and string-copy.
This commit is contained in:
parent
7433d157a3
commit
65429b4f10
|
@ -519,17 +519,35 @@ static pic_value
|
||||||
pic_str_string_copy(pic_state *pic)
|
pic_str_string_copy(pic_state *pic)
|
||||||
{
|
{
|
||||||
pic_str *str;
|
pic_str *str;
|
||||||
int n, start, end;
|
int n, start, end, len;
|
||||||
|
|
||||||
n = pic_get_args(pic, "s|ii", &str, &start, &end);
|
n = pic_get_args(pic, "s|ii", &str, &start, &end);
|
||||||
|
|
||||||
|
len = pic_str_len(str);
|
||||||
|
|
||||||
switch (n) {
|
switch (n) {
|
||||||
case 1:
|
case 1:
|
||||||
start = 0;
|
start = 0;
|
||||||
case 2:
|
case 2:
|
||||||
end = pic_str_len(str);
|
end = len;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
#if 0
|
||||||
|
if (start < 0) start = 0; /* should an error be reported? */
|
||||||
|
if (end > len) end = len; /* should an error be reported? */
|
||||||
|
#else
|
||||||
|
if ((start < 0) || (end < 0) || (start > len) || (end > len))
|
||||||
|
pic_errorf(pic, "string-copy: invalid index");
|
||||||
|
#endif
|
||||||
|
if (end < start) /* surely this is an error!? */
|
||||||
|
pic_errorf(pic, "string-copy: start index > end index");
|
||||||
|
#else
|
||||||
|
/* simplest version to catch all cases as errors */
|
||||||
|
if ((start < 0) || (end > len) || (end < start))
|
||||||
|
pic_errorf(pic, "string-copy: invalid index");
|
||||||
|
#endif
|
||||||
|
|
||||||
return pic_obj_value(pic_str_sub(pic, str, start, end));
|
return pic_obj_value(pic_str_sub(pic, str, start, end));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue