On Thu, May 16, 2019 at 10:22 PM Dave Airlie <airl...@gmail.com> wrote: > > From: Dave Airlie <airl...@redhat.com> > > link_uniforms.cpp:477: uninit_member: Non-static class member > "shader_storage_blocks_write_access" is not initialized in this constructor > nor in any functions that it calls. > > Reported by coverity. > --- > src/compiler/glsl/link_uniforms.cpp | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/src/compiler/glsl/link_uniforms.cpp > b/src/compiler/glsl/link_uniforms.cpp > index aa96227a7e1..641d38689bf 100644 > --- a/src/compiler/glsl/link_uniforms.cpp > +++ b/src/compiler/glsl/link_uniforms.cpp > @@ -472,7 +472,8 @@ public: > bool use_std430_as_default) > : prog(prog), map(map), uniforms(uniforms), > use_std430_as_default(use_std430_as_default), values(values), > - bindless_targets(NULL), bindless_access(NULL) > + bindless_targets(NULL), bindless_access(NULL), > + shader_storage_blocks_write_access(9)
Probably meant 0 here. With that, the series is Acked-by: Ilia Mirkin <imir...@alum.mit.edu> > { > } > > -- > 2.21.0 > > _______________________________________________ > mesa-dev mailing list > mesa-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev