Zebediah Figura : server: Do not allow selecting on the ifchange object.
Module: wine Branch: master Commit: 340cc46287d7861ce6cae19401752e65f4089ae9 URL: https://source.winehq.org/git/wine.git/?a=commit;h=340cc46287d7861ce6cae1940... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Thu Mar 18 00:41:23 2021 -0500 server: Do not allow selecting on the ifchange object. We never pass a handle to this object to the client anyway. Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- server/sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sock.c b/server/sock.c index 3aed5494612..8ab7d5b7236 100644 --- a/server/sock.c +++ b/server/sock.c @@ -1536,7 +1536,7 @@ static const struct object_ops ifchange_ops = sizeof(struct ifchange), /* size */ &no_type, /* type */ ifchange_dump, /* dump */ - add_queue, /* add_queue */ + no_add_queue, /* add_queue */ NULL, /* remove_queue */ NULL, /* signaled */ no_satisfied, /* satisfied */
participants (1)
-
Alexandre Julliard