We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23d24f9 commit 31a0a21Copy full SHA for 31a0a21
ext/zstdruby/streaming_compress.c
@@ -11,9 +11,7 @@ static void
11
streaming_compress_mark(void *p)
12
{
13
struct streaming_compress_t *sc = p;
14
- // rb_gc_mark((VALUE)sc->ctx);
15
rb_gc_mark(sc->buf);
16
- rb_gc_mark(sc->buf_size);
17
}
18
19
static void
ext/zstdruby/streaming_decompress.c
@@ -10,9 +10,7 @@ static void
10
streaming_decompress_mark(void *p)
struct streaming_decompress_t *sd = p;
- // rb_gc_mark((VALUE)sd->ctx);
rb_gc_mark(sd->buf);
- // rb_gc_mark(sd->buf_size);
0 commit comments