Skip to content

Commit 57fe819

Browse files
saghulbnoordhuis
andauthored
Fix updating DataView length when backing buffer is resized
Fixes: #988 Closes: #989 Co-authored-by: Ben Noordhuis <info@bnoordhuis.nl>
1 parent 8b5d525 commit 57fe819

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

quickjs.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -52312,8 +52312,12 @@ static JSValue js_array_buffer_resize(JSContext *ctx, JSValueConst this_val,
5231252312
list_for_each(el, &abuf->array_list) {
5231352313
ta = list_entry(el, JSTypedArray, link);
5231452314
p = ta->obj;
52315-
if (p->class_id == JS_CLASS_DATAVIEW)
52315+
if (p->class_id == JS_CLASS_DATAVIEW) {
52316+
if (ta->track_rab && ta->offset < len)
52317+
ta->length = len - ta->offset;
52318+
5231652319
continue;
52320+
}
5231752321
p->u.array.count = 0;
5231852322
p->u.array.u.ptr = NULL;
5231952323
size_log2 = typed_array_size_log2(p->class_id);
@@ -54702,8 +54706,7 @@ static JSValue js_dataview_setValue(JSContext *ctx,
5470254706
if (class_id <= JS_CLASS_UINT32_ARRAY) {
5470354707
if (JS_ToUint32(ctx, &v, val))
5470454708
return JS_EXCEPTION;
54705-
} else
54706-
if (class_id <= JS_CLASS_BIG_UINT64_ARRAY) {
54709+
} else if (class_id <= JS_CLASS_BIG_UINT64_ARRAY) {
5470754710
if (JS_ToBigInt64(ctx, (int64_t *)&v64, val))
5470854711
return JS_EXCEPTION;
5470954712
} else {

tests/bug988.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import {assert} from "./assert.js"
2+
const expected = [97,98,99]
3+
const ab = new ArrayBuffer(0, {maxByteLength:3})
4+
const dv = new DataView(ab)
5+
ab.resize(3)
6+
for (const [i,v] of Object.entries(expected)) dv.setUint8(i, v)
7+
for (const [i,v] of Object.entries(expected)) assert(v, dv.getUint8(i))

0 commit comments

Comments
 (0)