synced rest files, missed with last sync rev 47951

This commit is contained in:
Pawel Kolodziejski
2011-04-10 15:45:37 +02:00
parent 41be88f8b7
commit bccbcae43c
71 changed files with 977 additions and 3420 deletions
+2 -2
View File
@@ -157,7 +157,7 @@ void Debugger::enter() {
g_readline_debugger = this;
rl_completion_entry_function = &readline_completionFunction;
char *line_read = 0;
do {
free(line_read);
@@ -375,7 +375,7 @@ char *Debugger::readlineComplete(const char *input, int state) {
char *ret = (char *)malloc(iter->_key.size() + 1);
strcpy(ret, iter->_key.c_str());
return ret;
}
}
}
return 0;
}