[ros-diffs] [janderwald] 30107: - should_notify should check if the changed pidl is really a child of the containing folder. - fixes bug 2789

janderwald at svn.reactos.org janderwald at svn.reactos.org
Sun Nov 4 13:00:17 CET 2007


Author: janderwald
Date: Sun Nov  4 15:00:16 2007
New Revision: 30107

URL: http://svn.reactos.org/svn/reactos?rev=30107&view=rev
Log:
- should_notify should check if the changed pidl is really a child of the containing folder. 
- fixes bug 2789

Modified:
    trunk/reactos/dll/win32/shell32/changenotify.c

Modified: trunk/reactos/dll/win32/shell32/changenotify.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/changenotify.c?rev=30107&r1=30106&r2=30107&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/changenotify.c (original)
+++ trunk/reactos/dll/win32/shell32/changenotify.c Sun Nov  4 15:00:16 2007
@@ -267,7 +267,7 @@
         return FALSE;
     if (ILIsEqual( watched, changed ) )
         return TRUE;
-    if( sub && ILIsParent( watched, changed, FALSE ) )
+    if( sub && ILIsParent( watched, changed, TRUE ) )
         return TRUE;
     return FALSE;
 }




More information about the Ros-diffs mailing list