Fix off-by-one error in trimming space from the right of strings
This commit was SVN r24724.
Этот коммит содержится в:
родитель
661f508e62
Коммит
595dd60546
@ -105,7 +105,7 @@ void ompi_info_out(const char *pretty_message, const char *plain_message, const
|
||||
while (isspace(v[i]) && i > 0) {
|
||||
--i;
|
||||
}
|
||||
v[i] = '\0';
|
||||
v[i + 1] = '\0';
|
||||
}
|
||||
|
||||
if (ompi_info_pretty && NULL != pretty_message) {
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user