Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1353d029
Commit
1353d029
authored
May 03, 2018
by
Daniel Lehman
Committed by
Alexandre Julliard
May 07, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Notify parents of registry value changes.
Signed-off-by:
Daniel Lehman
<
dlehman@esri.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8dee2df6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
registry.c
dlls/advapi32/tests/registry.c
+1
-1
registry.c
server/registry.c
+1
-1
No files found.
dlls/advapi32/tests/registry.c
View file @
1353d029
...
...
@@ -3525,7 +3525,7 @@ static void test_RegNotifyChangeKeyValue(void)
ret
=
RegSetValueA
(
subsubkey
,
NULL
,
REG_SZ
,
"SubSubKeyValue"
,
0
);
ok
(
ret
==
ERROR_SUCCESS
,
"expected ERROR_SUCCESS, got %d
\n
"
,
ret
);
dwret
=
WaitForSingleObject
(
event
,
0
);
todo_wine
ok
(
dwret
==
WAIT_OBJECT_0
,
"expected WAIT_OBJECT_0, got %u
\n
"
,
dwret
);
ok
(
dwret
==
WAIT_OBJECT_0
,
"expected WAIT_OBJECT_0, got %u
\n
"
,
dwret
);
/* don't watch deeper values */
RegCloseKey
(
key
);
...
...
server/registry.c
View file @
1353d029
...
...
@@ -548,7 +548,7 @@ static void touch_key( struct key *key, unsigned int change )
/* do notifications */
check_notify
(
key
,
change
,
1
);
for
(
k
=
key
->
parent
;
k
;
k
=
k
->
parent
)
check_notify
(
k
,
change
&
~
REG_NOTIFY_CHANGE_LAST_SET
,
0
);
check_notify
(
k
,
change
,
0
);
}
/* try to grow the array of subkeys; return 1 if OK, 0 on error */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment