glxproxy: warning fix
glxsingle.c: In function ‘__glXForwardPipe0WithReply’: glxsingle.c:218:10: warning: ‘be_buf’ 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
							
								
									f928caca6e
								
							
						
					
					
						commit
						a4cd2e0da6
					
				| 
						 | 
					@ -215,7 +215,7 @@ int __glXForwardPipe0WithReply( __GLXclientState *cl, GLbyte *pc )
 | 
				
			||||||
   xGLXSingleReply be_reply;
 | 
					   xGLXSingleReply be_reply;
 | 
				
			||||||
    __GLXcontext *glxc;
 | 
					    __GLXcontext *glxc;
 | 
				
			||||||
   int buf_size;
 | 
					   int buf_size;
 | 
				
			||||||
   char *be_buf;
 | 
					   char *be_buf = NULL;
 | 
				
			||||||
   int   be_buf_size;
 | 
					   int   be_buf_size;
 | 
				
			||||||
   DMXScreenInfo *dmxScreen;
 | 
					   DMXScreenInfo *dmxScreen;
 | 
				
			||||||
   Display *dpy;
 | 
					   Display *dpy;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue