Changes in kernel/generic/src/console/kconsole.c [563d6077:98000fb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/kconsole.c
r563d6077 r98000fb 289 289 290 290 char tmp[STR_BOUNDS(MAX_CMDLINE)]; 291 wstr_ to_str(tmp, position - beg + 1, current + beg);291 wstr_nstr(tmp, current + beg, position - beg + 1); 292 292 293 293 int found; … … 543 543 if (str_lcmp(hlp->name, cmdline + start, 544 544 max(str_length(hlp->name), 545 str_nlength(cmdline + start, (size_t) (end - start) ))) == 0) {545 str_nlength(cmdline + start, (size_t) (end - start) - 1))) == 0) { 546 546 cmd = hlp; 547 547 break; … … 665 665 666 666 char cmdline[STR_BOUNDS(MAX_CMDLINE)]; 667 wstr_ to_str(cmdline, STR_BOUNDS(MAX_CMDLINE), tmp);667 wstr_nstr(cmdline, tmp, STR_BOUNDS(MAX_CMDLINE)); 668 668 669 669 if ((!kcon) && (len == 4) && (str_lcmp(cmdline, "exit", 4) == 0))
Note:
See TracChangeset
for help on using the changeset viewer.