mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 07:56:59 +00:00
Remove the wrong \0 character
svn path=/trunk/; revision=27723
This commit is contained in:
parent
244d310147
commit
d759e74461
1 changed files with 1 additions and 1 deletions
|
@ -768,7 +768,7 @@ INT CommandShowCommandsDetail (LPTSTR cmd, LPTSTR param)
|
||||||
{
|
{
|
||||||
LPTSTR NewCommand = malloc((_tcslen(param)+4)*sizeof(TCHAR));
|
LPTSTR NewCommand = malloc((_tcslen(param)+4)*sizeof(TCHAR));
|
||||||
_tcscpy(NewCommand, param);
|
_tcscpy(NewCommand, param);
|
||||||
_tcscat(NewCommand, _T(" /?\0"));
|
_tcscat(NewCommand, _T(" /?"));
|
||||||
DoCommand(NewCommand);
|
DoCommand(NewCommand);
|
||||||
free(NewCommand);
|
free(NewCommand);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue