glxproxy: warning fix
glxvendor.c: In function ‘__glXVForwardAllWithReply’: glxvendor.c:284:10: warning: ‘be_buf’ may be used uninitialized in this function glxvendor.c:285:10: warning: ‘be_buf_size’ may be used uninitialized in this function Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
a4cd2e0da6
commit
405ad0610d
|
@ -281,8 +281,8 @@ int __glXVForwardAllWithReply( __GLXclientState *cl, GLbyte *pc )
|
|||
xGLXVendorPrivReply be_reply;
|
||||
__GLXcontext *glxc;
|
||||
int buf_size;
|
||||
char *be_buf;
|
||||
int be_buf_size;
|
||||
char *be_buf = NULL;
|
||||
int be_buf_size = 0;
|
||||
int from_screen = 0;
|
||||
int to_screen = 0;
|
||||
int s;
|
||||
|
|
Loading…
Reference in New Issue