[bugfix] pic_intern must count up reference of the return value
This commit is contained in:
parent
44ff702e60
commit
772a5ceae5
|
@ -25,7 +25,9 @@ pic_intern(pic_state *pic, pic_str *str)
|
||||||
|
|
||||||
e = xh_get_str(&pic->syms, pic_str_cstr(str));
|
e = xh_get_str(&pic->syms, pic_str_cstr(str));
|
||||||
if (e) {
|
if (e) {
|
||||||
return xh_val(e, pic_sym);
|
sym = xh_val(e, pic_sym);
|
||||||
|
pic_gc_protect(pic, pic_obj_value(sym));
|
||||||
|
return sym;
|
||||||
}
|
}
|
||||||
|
|
||||||
cstr = pic_malloc(pic, pic_strlen(str) + 1);
|
cstr = pic_malloc(pic, pic_strlen(str) + 1);
|
||||||
|
|
Loading…
Reference in New Issue