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/changeno…
==============================================================================
--- 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;
}