aboutsummaryrefslogtreecommitdiff
path: root/s2b_old.go
diff options
context:
space:
mode:
authorGravatar Erik Dubbelboer <erik@dubbelboer.com> 2023-08-26 12:49:17 +0200
committerGravatar GitHub <noreply@github.com> 2023-08-26 12:49:17 +0200
commit0e99e64ee836adc5a3c4b35a0d8148900c2e7898 (patch)
tree74ed52ccb6d24a75f6e25d0f52b62e3050bef387 /s2b_old.go
parentfix round2_32, split round2 tests because they depend on sizeof int at compil... (diff)
downloadfasthttp-0e99e64ee836adc5a3c4b35a0d8148900c2e7898.tar.gz
fasthttp-0e99e64ee836adc5a3c4b35a0d8148900c2e7898.tar.bz2
fasthttp-0e99e64ee836adc5a3c4b35a0d8148900c2e7898.zip
Update golangci-lint and gosec (#1609)v1.49.0
Diffstat (limited to 's2b_old.go')
-rw-r--r--s2b_old.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/s2b_old.go b/s2b_old.go
index 4cc141c..d269cba 100644
--- a/s2b_old.go
+++ b/s2b_old.go
@@ -13,9 +13,7 @@ import (
// Note it may break if string and/or slice header will change
// in the future go versions.
func s2b(s string) (b []byte) {
- /* #nosec G103 */
bh := (*reflect.SliceHeader)(unsafe.Pointer(&b))
- /* #nosec G103 */
sh := (*reflect.StringHeader)(unsafe.Pointer(&s))
bh.Data = sh.Data
bh.Cap = sh.Len