File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -472,7 +472,7 @@ QueryPointsFromSymbolicLinkName(IN PDEVICE_EXTENSION DeviceExtension,
472472 {
473473 SymlinkInformation = CONTAINING_RECORD (SymlinksEntry , SYMLINK_INFORMATION , SymbolicLinksListEntry );
474474
475- if (RtlEqualUnicodeString (SymbolicName , & SymlinkInformation -> Name , TRUE) == 0 )
475+ if (RtlEqualUnicodeString (SymbolicName , & SymlinkInformation -> Name , TRUE))
476476 {
477477 break ;
478478 }
@@ -500,7 +500,7 @@ QueryPointsFromSymbolicLinkName(IN PDEVICE_EXTENSION DeviceExtension,
500500 {
501501 SymlinkInformation = CONTAINING_RECORD (SymlinksEntry , SYMLINK_INFORMATION , SymbolicLinksListEntry );
502502
503- if (RtlEqualUnicodeString (SymbolicName , & SymlinkInformation -> Name , TRUE) == 0 )
503+ if (RtlEqualUnicodeString (SymbolicName , & SymlinkInformation -> Name , TRUE))
504504 {
505505 break ;
506506 }
You can’t perform that action at this time.
0 commit comments