Fixed a write to array index -1 with demo/demo -tree

This commit is contained in:
Thomas Schmitt 2014-02-16 14:31:33 +01:00
parent 985015cea1
commit b41e36365d
1 changed files with 2 additions and 1 deletions

View File

@ -95,6 +95,7 @@ tree_print_dir(IsoDir *dir, int level)
sp[i+1] = ' ';
}
if (level > 0)
sp[level * 2 - 1] = '-';
sp[level * 2] = '\0';