Fix up naming of Base64 and Leb128 functions.

Change-Id: I80a2493d822b59311ba0d7bd68b5ccf0e3b29e6a
This commit is contained in:
Peter Johnson
2015-06-25 23:19:24 -07:00
parent d7ca3343bc
commit de4ba1aa35
11 changed files with 39 additions and 37 deletions

View File

@@ -191,7 +191,7 @@ bool WireDecoder::ReadString(NT_String* str) {
str->len = v;
} else {
unsigned long v;
if (!ReadULEB128(&v)) return false;
if (!ReadUleb128(&v)) return false;
str->len = v;
}
str->str = (char*)std::malloc(str->len + 1);