diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2025-11-18 19:20:29 -0800 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2025-11-18 19:20:29 -0800 |
| commit | 933c9c9721bf20bc00dab85a75546a7573c31747 (patch) | |
| tree | 62282c41bec50a844148e09b5741283aa5bc3a61 /ccl.go | |
| parent | Add a helper function for readability (diff) | |
| download | ccl-933c9c9721bf20bc00dab85a75546a7573c31747.tar.zst | |
Holy shit fuzzing is so cool
Diffstat (limited to 'ccl.go')
| -rw-r--r-- | ccl.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -306,7 +306,7 @@ func checkNum(b []byte) bool { return true } b = b[1:] - if len(b) > 0 && b[0] == '-' || b[0] == '+' { + if len(b) > 0 && (b[0] == '-' || b[0] == '+') { b = b[1:] } if len(b) == 0 { |
