diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-12-04 14:56:06 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-12-04 14:56:06 +0000 |
| commit | 73ac3b8e264df144a14084f633841bb314ae9294 (patch) | |
| tree | 4b1af2c9b9d461b761fbf919d65ed3fe7fe492fe /src/wallet/wallet2.cpp | |
| parent | c36cb5434059ed53daf947b189343ac0bd8f31d8 (diff) | |
| download | monzero-core-73ac3b8e264df144a14084f633841bb314ae9294.tar.gz monzero-core-73ac3b8e264df144a14084f633841bb314ae9294.tar.xz monzero-core-73ac3b8e264df144a14084f633841bb314ae9294.zip | |
wallet2: avoid possible undefined behavior on empty string
Diffstat (limited to 'src/wallet/wallet2.cpp')
| -rw-r--r-- | src/wallet/wallet2.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index ea3994435..f637c8b03 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -191,8 +191,7 @@ boost::optional<tools::password_container> get_password(const boost::program_opt } // Remove line breaks the user might have inserted - password.erase(std::remove(password.end() - 1, password.end(), '\n'), password.end()); - password.erase(std::remove(password.end() - 1, password.end(), '\r'), password.end()); + boost::trim_right_if(password, boost::is_any_of("\r\n")); return {tools::password_container(std::move(password))}; } |
