diff options
| author | pkalinnikov <[email protected]> | 2022-02-10 16:50:15 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:15 +0300 |
| commit | d507a9366b2ab84411afe63fea9fba5498891e1b (patch) | |
| tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/string/hex.cpp | |
| parent | 9e33e026829d561d6fd46d72b88c367952e08075 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/string/hex.cpp')
| -rw-r--r-- | util/string/hex.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/string/hex.cpp b/util/string/hex.cpp index 75aa031639b..667397987fc 100644 --- a/util/string/hex.cpp +++ b/util/string/hex.cpp @@ -56,8 +56,8 @@ TString HexEncode(const void* in, size_t len) { TString HexDecode(const void* in, size_t len) { TString ret; - ret.ReserveAndResize(len >> 1); - HexDecode(in, len, ret.begin()); + ret.ReserveAndResize(len >> 1); + HexDecode(in, len, ret.begin()); return ret; } |
