Merge pull request #1619 from Araq/revert-1618-patch-3

Revert "Remove extra trailing zero"
This commit is contained in:
Varriount
2014-11-01 17:52:21 -04:00

View File

@@ -52,9 +52,10 @@ 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(24)
result = newString(25)
oidToString(oid, result)
var