[vlc-commits] Win32: return a failure when a CHANGE_DISPLAY_SIZE event is forced
Felix Abecassis
git at videolan.org
Thu Feb 13 11:05:26 CET 2014
vlc/vlc-2.1 | branch: master | Felix Abecassis <felix.abecassis at gmail.com> | Tue Feb 11 16:20:06 2014 +0100| [67e390d56379cac43ede7ea633614b8473ec5b0c] | committer: Jean-Baptiste Kempf
Win32: return a failure when a CHANGE_DISPLAY_SIZE event is forced
See x11.c for rationale.
Close #9273
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
(cherry picked from commit ad58279cf86051a108589eeea6520f69243c1fb8)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=67e390d56379cac43ede7ea633614b8473ec5b0c
---
modules/video_output/msw/common.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/video_output/msw/common.c b/modules/video_output/msw/common.c
index d20c136..45f1f5e 100644
--- a/modules/video_output/msw/common.c
+++ b/modules/video_output/msw/common.c
@@ -603,6 +603,7 @@ int CommonControl(vout_display_t *vd, int query, va_list args)
rect_window.right - rect_window.left,
rect_window.bottom - rect_window.top, SWP_NOMOVE);
}
+ return VLC_EGENERIC;
}
UpdateRects(vd, cfg, source, is_forced);
return VLC_SUCCESS;
More information about the vlc-commits
mailing list