Fixes bug in StringWriter, which causes the compiler to
generate a segfault when there are too many string concatenations. This happens when we convert a file of about 100kb or larger. The fix modifies the StringWriter to write the file data out into a single, long string, without concatenations. This addresses issue #5
This commit is contained in:
parent
0877d93299
commit
10c722dc95
|
@ -9,8 +9,6 @@ import (
|
|||
"io"
|
||||
)
|
||||
|
||||
var line = []byte("\"+\n\"")
|
||||
|
||||
type StringWriter struct {
|
||||
io.Writer
|
||||
c int
|
||||
|
@ -22,11 +20,6 @@ func (w *StringWriter) Write(p []byte) (n int, err error) {
|
|||
}
|
||||
|
||||
for n = range p {
|
||||
if w.c%16 == 0 {
|
||||
w.Writer.Write(line)
|
||||
w.c = 0
|
||||
}
|
||||
|
||||
fmt.Fprintf(w.Writer, "\\x%02x", p[n])
|
||||
w.c++
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user