aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-01-12 13:53:59 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-01-12 13:53:59 -0800
commit40e223c12d7b0199098408201f1b15e70a9918b7 (patch)
tree2372bb38c7c46c8dcd150693ffcc26bc8a5724ac /reader.cpp
parentb2c78dbd57a7c891aa176f1a571f36bd765e9ffb (diff)
Additional miscellaneous fixes based on cppcheck static analysis
Diffstat (limited to 'reader.cpp')
-rw-r--r--reader.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/reader.cpp b/reader.cpp
index c5857f90..a2bda51e 100644
--- a/reader.cpp
+++ b/reader.cpp
@@ -1433,7 +1433,7 @@ struct autosuggestion_context_t
{
const completion_t &comp = completions.at(0);
size_t cursor = this->cursor_pos;
- this->autosuggestion = completion_apply_to_command_line(comp.completion.c_str(), comp.flags, this->search_string, &cursor, true /* append only */);
+ this->autosuggestion = completion_apply_to_command_line(comp.completion, comp.flags, this->search_string, &cursor, true /* append only */);
return 1;
}
@@ -2200,7 +2200,6 @@ static void handle_token_history(int forward, int reset)
*/
if (data->history_search.go_backwards())
{
- wcstring item = data->history_search.current_string();
data->token_history_buff = data->history_search.current_string();
}
current_pos = data->token_history_buff.size();
@@ -3325,7 +3324,7 @@ const wchar_t *reader_readline(void)
{
//history_reset();
data->history_search.go_to_end();
- reader_set_buffer(data->search_buff.c_str(), data->search_buff.size());
+ reader_set_buffer(data->search_buff, data->search_buff.size());
}
else
{