Skip to content

Commit 1c907db

Browse files
committed
Allocate bytes.Buffer directly on the stack.
1 parent 0f09109 commit 1c907db

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

format.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ used. For Cid version 1 the multibase prefix is included.
3636
// documented in the FormatRef constant
3737
func Format(fmtStr string, base mb.Encoding, cid *Cid) (string, error) {
3838
p := cid.Prefix()
39-
out := new(bytes.Buffer)
39+
var out bytes.Buffer
4040
var err error
4141
encoder, err := mb.NewEncoder(base)
4242
if err != nil {
@@ -59,19 +59,19 @@ func Format(fmtStr string, base mb.Encoding, cid *Cid) (string, error) {
5959
case 'B': // base code
6060
out.WriteByte(byte(base))
6161
case 'v': // version string
62-
fmt.Fprintf(out, "cidv%d", p.Version)
62+
fmt.Fprintf(&out, "cidv%d", p.Version)
6363
case 'V': // version num
64-
fmt.Fprintf(out, "%d", p.Version)
64+
fmt.Fprintf(&out, "%d", p.Version)
6565
case 'c': // codec name
6666
out.WriteString(codecToString(p.Codec))
6767
case 'C': // codec code
68-
fmt.Fprintf(out, "%d", p.Codec)
68+
fmt.Fprintf(&out, "%d", p.Codec)
6969
case 'h': // hash fun name
7070
out.WriteString(hashToString(p.MhType))
7171
case 'H': // hash fun code
72-
fmt.Fprintf(out, "%d", p.MhType)
72+
fmt.Fprintf(&out, "%d", p.MhType)
7373
case 'L': // hash length
74-
fmt.Fprintf(out, "%d", p.MhLength)
74+
fmt.Fprintf(&out, "%d", p.MhLength)
7575
case 'm', 'M': // multihash encoded in base %b
7676
out.WriteString(encode(encoder, cid.Hash(), fmtStr[i] == 'M'))
7777
case 'd', 'D': // hash digest encoded in base %b
@@ -89,7 +89,7 @@ func Format(fmtStr string, base mb.Encoding, cid *Cid) (string, error) {
8989
case 'S': // cid string without base prefix
9090
out.WriteString(encode(encoder, cid.Bytes(), true))
9191
case 'P': // prefix
92-
fmt.Fprintf(out, "cidv%d-%s-%s-%d",
92+
fmt.Fprintf(&out, "cidv%d-%s-%s-%d",
9393
p.Version,
9494
codecToString(p.Codec),
9595
hashToString(p.MhType),

0 commit comments

Comments
 (0)