From: Emil Velikov Date: Thu, 13 Mar 2014 06:35:52 +0000 (+0000) Subject: mesa: return v.value_int64 when the requested type is TYPE_INT64 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a9cf3aa2087f807b15e0e59ad00dd5bacf362c18;p=mesa.git mesa: return v.value_int64 when the requested type is TYPE_INT64 Fixes "Operands don't affect result" defect reported by Coverity. Cc: "9.2 10.0 10.1" Signed-off-by: Emil Velikov Reviewed-by: Brian Paul --- diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index b1908515c25..88cf202dfe4 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -1997,7 +1997,7 @@ _mesa_GetBooleani_v( GLenum pname, GLuint index, GLboolean *params ) params[3] = INT_TO_BOOLEAN(v.value_int_4[3]); break; case TYPE_INT64: - params[0] = INT64_TO_BOOLEAN(v.value_int); + params[0] = INT64_TO_BOOLEAN(v.value_int64); break; default: ; /* nothing - GL error was recorded */ @@ -2042,7 +2042,7 @@ _mesa_GetIntegeri_v( GLenum pname, GLuint index, GLint *params ) params[3] = v.value_int_4[3]; break; case TYPE_INT64: - params[0] = INT64_TO_INT(v.value_int); + params[0] = INT64_TO_INT(v.value_int64); break; default: ; /* nothing - GL error was recorded */ @@ -2067,7 +2067,7 @@ _mesa_GetInteger64i_v( GLenum pname, GLuint index, GLint64 *params ) params[3] = v.value_int_4[3]; break; case TYPE_INT64: - params[0] = v.value_int; + params[0] = v.value_int64; break; default: ; /* nothing - GL error was recorded */