Actions
Bug #1985
closedst_delete_safe is not safe
Description
=begin
st_delete_safe causes BUS error with the following code
st_table *tbl = st_init_numtable();
ID k = 1, v = 1;
st_insert(tbl, k, v);
st_delete_safe(tbl, &k, &v, 100);
This is because st_delete_safe does not support packed state of st_table.
Is st_delete_safe an API for extension libraries? i.e. Is this limitation of st_delete_safe intentional?
=end
Updated by nobu (Nobuyoshi Nakada) over 15 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
=begin
Applied in changeset r24637.
=end
Actions
Like0
Like0