This commit is contained in:
Sugu Sougoumarane 2012-06-13 12:49:51 -07:00
Родитель 3f4f66deb1
Коммит 93669dff3b
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -242,8 +242,9 @@ func tonumber(val string) (number interface{}) {
func base64Decode(b []byte) string {
decodedKey := make([]byte, base64.StdEncoding.DecodedLen(len(b)))
if _, err := base64.StdEncoding.Decode(decodedKey, b); err != nil {
n, err := base64.StdEncoding.Decode(decodedKey, b)
if err != nil {
panic(NewTabletError(FAIL, "%s", err))
}
return string(decodedKey)
return string(decodedKey[:n])
}