Merge pull request #1618 from flaviut/patch-3

Remove extra trailing zero
This commit is contained in:
Varriount
2014-11-01 17:42:05 -04:00

View File

@@ -52,10 +52,9 @@ proc oidToString*(oid: Oid, str: cstring) =
str[2 * i] = hex[(b and 0xF0) shr 4]
str[2 * i + 1] = hex[b and 0xF]
inc(i)
str[24] = '\0'
proc `$`*(oid: Oid): string =
result = newString(25)
result = newString(24)
oidToString(oid, result)
var