diff options
| author | zhibog <zhibog-github@web.de> | 2019-11-09 18:06:33 +0100 |
|---|---|---|
| committer | zhibog <zhibog-github@web.de> | 2019-11-09 18:06:33 +0100 |
| commit | 694ee02247b5b45da92d319d4134b38415d5764a (patch) | |
| tree | de27eb59f5611ccdeecfa4c51ab887ad4a106d0e /core/encoding | |
| parent | 0451c88ab662b55861efe33ca3f1aef2dec54bd0 (diff) | |
Missed one
Diffstat (limited to 'core/encoding')
| -rw-r--r-- | core/encoding/base32/base32.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/base32/base32.odin b/core/encoding/base32/base32.odin index c7dc9870f..3dfa800a5 100644 --- a/core/encoding/base32/base32.odin +++ b/core/encoding/base32/base32.odin @@ -95,7 +95,7 @@ decode :: proc(data: string, DEC_TBL := DEC_TABLE, allocator := context.allocato if len(data) == 0 do return []byte{};
outi := 0;
- olen := len(data);
+ olen := len(data);
data := data;
out := make([]byte, len(data) / 8 * 5, allocator);
|