OSDN Git Service

r600g: Fix memory leak on error path.
authorVinson Lee <vlee@vmware.com>
Fri, 17 Sep 2010 21:17:26 +0000 (14:17 -0700)
committerVinson Lee <vlee@vmware.com>
Fri, 17 Sep 2010 21:17:26 +0000 (14:17 -0700)
src/gallium/winsys/r600/drm/r600_state2.c

index e33b63d..b3d6187 100644 (file)
@@ -984,7 +984,7 @@ void r600_context_dump_bof(struct r600_context *ctx, const char *file)
                goto out_err;
        device_id = bof_int32(ctx->radeon->device);
        if (device_id == NULL)
-               return;
+               goto out_err;
        if (bof_object_set(root, "device_id", device_id))
                goto out_err;
        bof_decref(device_id);