mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Don't dereference the pointers. Catch by Thomas.
svn path=/trunk/; revision=17548
This commit is contained in:
parent
8feae80765
commit
5509951fc0
1 changed files with 2 additions and 2 deletions
|
@ -250,8 +250,8 @@ INT GetRedirection (LPTSTR s, LPTSTR ifn, LPTSTR ofn, LPTSTR efn, LPINT lpnFlags
|
||||||
{
|
{
|
||||||
if (*sp == _T('^'))
|
if (*sp == _T('^'))
|
||||||
{
|
{
|
||||||
*sp++;
|
sp++;
|
||||||
*sp++;
|
sp++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else if ((*sp == _T('"')) || (*sp == _T('\'')))
|
else if ((*sp == _T('"')) || (*sp == _T('\'')))
|
||||||
|
|
Loading…
Reference in a new issue