fix some valgrind complaints

This commit is contained in:
Keith Whitwell
2005-05-10 18:10:32 +00:00
parent 5a5b4436cb
commit e57d5c4742
2 changed files with 3 additions and 3 deletions

View File

@@ -45,7 +45,7 @@
static int intelEmitIrqLocked( intelContextPtr intel ) static int intelEmitIrqLocked( intelContextPtr intel )
{ {
drmI830IrqEmit ie; drmI830IrqEmit ie;
int ret, seq; int ret, seq = 0;
assert(((*(int *)intel->driHwLock) & ~DRM_LOCK_CONT) == assert(((*(int *)intel->driHwLock) & ~DRM_LOCK_CONT) ==
(DRM_LOCK_HELD|intel->hHWContext)); (DRM_LOCK_HELD|intel->hHWContext));
@@ -398,7 +398,7 @@ void intelClear(GLcontext *ctx, GLbitfield mask, GLboolean all,
void *intelAllocateAGP( intelContextPtr intel, GLsizei size ) void *intelAllocateAGP( intelContextPtr intel, GLsizei size )
{ {
int region_offset; int region_offset = 0;
drmI830MemAlloc alloc; drmI830MemAlloc alloc;
int ret; int ret;

View File

@@ -81,7 +81,7 @@ static GLboolean intelInitDriver(__DRIscreenPrivate *sPriv)
/* Allocate the private area */ /* Allocate the private area */
intelScreen = (intelScreenPrivate *)MALLOC(sizeof(intelScreenPrivate)); intelScreen = (intelScreenPrivate *)CALLOC(sizeof(intelScreenPrivate));
if (!intelScreen) { if (!intelScreen) {
fprintf(stderr,"\nERROR! Allocating private area failed\n"); fprintf(stderr,"\nERROR! Allocating private area failed\n");
return GL_FALSE; return GL_FALSE;