Skip to content

Commit 32ef4d9

Browse files
author
Huelse
committed
variable rename
1 parent 70fc82b commit 32ef4d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wrapper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ T deserialize(py::tuple t)
3636
throw std::runtime_error("(Pickle) Invalid input tuple!");
3737
T c = T();
3838
std::string encoded_str = t[0].cast<std::string>();
39-
std::string decoded_str = base64_decode(cipherstr_encoded);
39+
std::string decoded_str = base64_decode(encoded_str);
4040
std::stringstream input(std::ios::binary | std::ios::in);
4141
input.str(decoded_str);
4242
c.load(input);

0 commit comments

Comments
 (0)