diff options
author | Rob Clark <[email protected]> | 2014-01-11 10:34:36 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2014-02-01 11:47:08 -0500 |
commit | 4971628baedf885ba6987a2946c6e24526464125 (patch) | |
tree | 252bdd1fe354d309551773b3bb0a79cbc2026d7c /src/gallium/drivers/freedreno/freedreno_context.c | |
parent | 303df12db8a9b54a3471e259d8b38d1f4cf8b393 (diff) |
freedreno: ctx should hold ref to dev
The ctx should hold ref to dev to avoid problems if screen is destroyed
before ctx. Doesn't really fix the egl/glx issues, but at least it
prevents things from getting much worse.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_context.c')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_context.c b/src/gallium/drivers/freedreno/freedreno_context.c index 370c8f69da6..33abb317045 100644 --- a/src/gallium/drivers/freedreno/freedreno_context.c +++ b/src/gallium/drivers/freedreno/freedreno_context.c @@ -168,6 +168,8 @@ fd_context_destroy(struct pipe_context *pctx) fd_bo_del(pipe->bo); } + fd_device_del(ctx->dev); + FREE(ctx); } |