aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/base32
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-01-09 23:43:34 +0000
committergingerBill <bill@gingerbill.org>2021-01-09 23:43:34 +0000
commit3bcccf88d578360bcc97e5903b316b2cfac39b03 (patch)
tree0ae3f1f1ff2ced7b80fa23fe949443c90b92935a /core/encoding/base32
parent9e8c46b8de123829f26c2e92fcaf15a81c9b6b01 (diff)
vet all core packages
Diffstat (limited to 'core/encoding/base32')
-rw-r--r--core/encoding/base32/base32.odin1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/encoding/base32/base32.odin b/core/encoding/base32/base32.odin
index dad9d3e04..82dfb9422 100644
--- a/core/encoding/base32/base32.odin
+++ b/core/encoding/base32/base32.odin
@@ -97,7 +97,6 @@ decode :: proc(data: string, DEC_TBL := DEC_TABLE, allocator := context.allocato
}
outi := 0;
- olen := len(data);
data := data;
out := make([]byte, len(data) / 8 * 5, allocator);