From 8d376acc9b3e6796a12e6462c530b1bff3dc2f90 Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Wed, 23 Apr 2025 12:23:21 -0700 Subject: [PATCH] zero means zero use a default of 1024 when asking for zero is confusing since most calls seem to assume 0 means do not ready any data --- fs/ggml/ggml.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fs/ggml/ggml.go b/fs/ggml/ggml.go index 1ba0813f7..fcb69decc 100644 --- a/fs/ggml/ggml.go +++ b/fs/ggml/ggml.go @@ -366,10 +366,6 @@ func DetectContentType(b []byte) string { // maxArraySize. If maxArraySize is 0, the default value of 1024 is used. If // the maxArraySize is negative, all arrays are collected. func Decode(rs io.ReadSeeker, maxArraySize int) (*GGML, int64, error) { - if maxArraySize == 0 { - maxArraySize = 1024 - } - rs = bufioutil.NewBufferedSeeker(rs, 32<<10) var magic uint32