use strndup if possible

This commit is contained in:
Yuichi Nishiwaki 2013-11-15 17:08:18 +09:00
parent 754d53443b
commit 73d9b0dc79
1 changed files with 1 additions and 6 deletions

View File

@ -6,15 +6,10 @@ pic_value
pic_str_new(pic_state *pic, const char *cstr, size_t len)
{
struct pic_string *str;
char *new_str;
new_str = (char *)pic_alloc(pic, len + 1);
strncpy(new_str, cstr, len);
new_str[len] = '\0';
str = (struct pic_string *)pic_obj_alloc(pic, sizeof(struct pic_string), PIC_TT_STRING);
str->len = len;
str->str = new_str;
str->str = strdup(cstr);
return pic_obj_value(str);
}