Browse Source

fix stupid oversight

master
Martin Dørum 3 years ago
parent
commit
ada96b8fdc
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/vm/vm.c

+ 1
- 1
lib/vm/vm.c View File

// Don't need to do anything more; the next round of GC will free // Don't need to do anything more; the next round of GC will free
// whichever values were only referenced by the array // whichever values were only referenced by the array
int typ = l2_vm_value_type(val); int typ = l2_vm_value_type(val);
if (typ == L2_VAL_TYPE_ARRAY || typ == L2_VAL_TYPE_BUFFER || typ == L2_VAL_TYPE_NAMESPACE) {
if (typ == L2_VAL_TYPE_ARRAY) {
free(val->array); free(val->array);
} else if (typ == L2_VAL_TYPE_BUFFER) { } else if (typ == L2_VAL_TYPE_BUFFER) {
free(val->buffer); free(val->buffer);

Loading…
Cancel
Save