mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +00:00
[NTOSKRNL]
Fix a memory leak svn path=/trunk/; revision=56367
This commit is contained in:
parent
a9d728c50a
commit
c20ab1959d
1 changed files with 6 additions and 1 deletions
|
@ -251,6 +251,11 @@ FsRtlIsDbcsInExpression(IN PANSI_STRING Expression,
|
|||
ExpressionPosition++;
|
||||
}
|
||||
|
||||
if (BackTracking)
|
||||
{
|
||||
ExFreePoolWithTag(BackTracking, 'nrSF');
|
||||
}
|
||||
|
||||
return (ExpressionPosition == Expression->Length && NamePosition == Name->Length);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue