[Piglit] [PATCH v2] cl: Initialize errNo on invalid image type.
Serge Martin
edb+piglit at sigluy.net
Sat Sep 10 13:03:57 UTC 2016
On Thursday 01 September 2016 05:54:24 Jan Vesely wrote:
> On Thu, 2016-09-01 at 07:10 +0000, Vinson Lee wrote:
> > Fixes sometimes-uninitialized warning.
Pushed, thanks
Serge
> >
> > piglit-util-cl.c:1052:13: warning: variable 'errNo' is used
> > uninitialized whenever 'if' condition is false [-Wsometimes-
> > uninitialized]
> > } else if (desc->image_type == CL_MEM_OBJECT_IMAGE3D) {
> > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > piglit-util-cl.c:1062:28: note: uninitialized use occurs here
> > if(!piglit_cl_check_error(errNo, CL_SUCCESS)) {
> > ^~~~~
> > piglit-util-cl.c:1052:9: note: remove the 'if' if its condition is
> > always true
> > } else if (desc->image_type == CL_MEM_OBJECT_IMAGE3D) {
> > ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > piglit-util-cl.c:1040:14: note: initialize the variable 'errNo' to
> > silence this warning
> > cl_int errNo;
> > ^
> > = 0
> >
> > Fixes: 910cd6c222930 ("cl: add image and sampler utility functions")
> > Signed-off-by: Vinson Lee <vlee at freedesktop.org>
> > ---
> > tests/util/piglit-util-cl.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/tests/util/piglit-util-cl.c b/tests/util/piglit-util-
> > cl.c
> > index dba32636f8ad..0211c1ff63b6 100644
> > --- a/tests/util/piglit-util-cl.c
> > +++ b/tests/util/piglit-util-cl.c
> > @@ -1095,6 +1095,7 @@ piglit_cl_create_image(piglit_cl_context
> > context, cl_mem_flags flags,
> > desc->image_depth, 0, 0,
> > NULL, &errNo);
> > } else {
> > + errNo = CL_INVALID_OPERATION;
> > fprintf(stderr,
> > "Invalid image mem object type: %s\n",
> > piglit_cl_get_enum_name(desc->image_type));
>
> I think it'd be nicer to just return early instead of printing two
> error messages. CL1.2 returns CL_INVALID_IMAGE_DESCRIPTOR if the
> descriptor values are not valid, but the enum value is not present in
> CL1.1-. Either way:
>
> Acked-by: Jan Vesely <jan.vesely at rutgers.edu>
>
> Jan
More information about the Piglit
mailing list