Handle zero-length strings in bencode data.
Improve error reporting slightly.
This commit is contained in:
parent
bd0555a835
commit
2532a37945
1 changed files with 3 additions and 2 deletions
5
parse.go
5
parse.go
|
@ -10,6 +10,7 @@ package bencode
|
|||
import (
|
||||
"bufio"
|
||||
"bytes"
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"strconv"
|
||||
|
@ -110,7 +111,7 @@ Switch:
|
|||
goto exit
|
||||
}
|
||||
switch {
|
||||
case c >= '1' && c <= '9':
|
||||
case c >= '0' && c <= '9':
|
||||
// String
|
||||
err = r.UnreadByte()
|
||||
if err != nil {
|
||||
|
@ -193,7 +194,7 @@ Switch:
|
|||
n++
|
||||
}
|
||||
default:
|
||||
err = os.NewError("Unexpected character")
|
||||
err = os.NewError(fmt.Sprintf("Unexpected character: '%v'", c))
|
||||
}
|
||||
exit:
|
||||
build.Flush()
|
||||
|
|
Loading…
Reference in a new issue