Commit a417069d authored by thomasanderson's avatar thomasanderson Committed by Commit bot

X11: Fix msan use-of-uninitialized-value error

BUG=None
R=erg@chromium.org
CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_chromium_msan_rel_ng

Review-Url: https://codereview.chromium.org/2740933005
Cr-Commit-Position: refs/heads/master@{#456248}
parent 141e9ca0
...@@ -1679,6 +1679,7 @@ void DesktopWindowTreeHostX11::UpdateMinAndMaxSize() { ...@@ -1679,6 +1679,7 @@ void DesktopWindowTreeHostX11::UpdateMinAndMaxSize() {
max_size_in_pixels_ = maximum_in_pixels; max_size_in_pixels_ = maximum_in_pixels;
XSizeHints hints; XSizeHints hints;
hints.flags = 0;
long supplied_return; long supplied_return;
XGetWMNormalHints(xdisplay_, xwindow_, &hints, &supplied_return); XGetWMNormalHints(xdisplay_, xwindow_, &hints, &supplied_return);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment