Re: [Mesa-dev] [PATCH] gallivm: fix default cbuf info.

2019-05-28 Thread Juan A. Suarez Romero
On Tue, 2019-05-28 at 02:08 +0200, Roland Scheidegger wrote: > Am 27.05.19 um 11:39 schrieb Juan A. Suarez Romero: > > On Fri, 2019-05-24 at 03:08 +0200, srol...@vmware.com wrote: > > > From: Roland Scheidegger > > > > > > The default null_output really needs to be static, otherwise the values >

Re: [Mesa-dev] [PATCH] gallivm: fix default cbuf info.

2019-05-27 Thread Roland Scheidegger
Am 27.05.19 um 11:39 schrieb Juan A. Suarez Romero: > On Fri, 2019-05-24 at 03:08 +0200, srol...@vmware.com wrote: >> From: Roland Scheidegger >> >> The default null_output really needs to be static, otherwise the values >> we'll eventually get later are doubly random (they are not initialized,

Re: [Mesa-dev] [PATCH] gallivm: fix default cbuf info.

2019-05-27 Thread Juan A. Suarez Romero
On Fri, 2019-05-24 at 03:08 +0200, srol...@vmware.com wrote: > From: Roland Scheidegger > > The default null_output really needs to be static, otherwise the values > we'll eventually get later are doubly random (they are not initialized, > and even if they were it's a pointer to a local stack

Re: [Mesa-dev] [PATCH] gallivm: fix default cbuf info.

2019-05-24 Thread Jose Fonseca
Reviewed-by: Jose Fonseca Thanks. Jose From: srol...@vmware.com Sent: Friday, May 24, 2019 02:08 To: Jose Fonseca; mesa-dev@lists.freedesktop.org Cc: Roland Scheidegger Subject: [PATCH] gallivm: fix default cbuf info. From: Roland Scheidegger The default

[Mesa-dev] [PATCH] gallivm: fix default cbuf info.

2019-05-23 Thread sroland
From: Roland Scheidegger The default null_output really needs to be static, otherwise the values we'll eventually get later are doubly random (they are not initialized, and even if they were it's a pointer to a local stack variable). VMware bug 2349556. ---