Handle zero-length strings in bencode data.

Improve error reporting slightly.
This commit is contained in:
Jack Palevich 2010-04-22 20:32:37 +08:00
parent bd0555a835
commit 2532a37945

View file

@ -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()