Jed Denlea 11 年之前
父节点
当前提交
2706649e0a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      email.go

+ 1 - 1
email.go

@@ -285,7 +285,7 @@ func base64Wrap(w io.Writer, b []byte) {
 	// 57 raw bytes per 76-byte base64 line.
 	const maxRaw = 57
 	// Buffer for each line, including trailing CRLF.
-	buffer := make([]byte, MaxLineLength + len("\r\n"))
+	buffer := make([]byte, MaxLineLength+len("\r\n"))
 	copy(buffer[MaxLineLength:], "\r\n")
 	// Process raw chunks until there's no longer enough to fill a line.
 	for len(b) >= maxRaw {