diff options
author | Marcin Slusarz <marcin.slusarz@gmail.com> | 2010-01-18 10:48:06 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-01-18 10:48:06 -0700 |
commit | e978b24c87be6d7572ed3272e6b186d5c54fb414 (patch) | |
tree | c2368621fd3b504aee092efd26657e1625dc495d /src/gallium/state_trackers/dri/dri_context.c | |
parent | 23ae31820042f2bc4694f7c48696a697d674b802 (diff) |
st/dri: fix optionCache memory leaks
Signed-off-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/gallium/state_trackers/dri/dri_context.c')
-rw-r--r-- | src/gallium/state_trackers/dri/dri_context.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/dri/dri_context.c b/src/gallium/state_trackers/dri/dri_context.c index 8819936fca..cd9d8b682e 100644 --- a/src/gallium/state_trackers/dri/dri_context.c +++ b/src/gallium/state_trackers/dri/dri_context.c @@ -101,6 +101,12 @@ dri_destroy_context(__DRIcontextPrivate * cPriv) { struct dri_context *ctx = dri_context(cPriv); + /* note: we are freeing values and nothing more because + * driParseConfigFiles allocated values only - the rest + * is owned by screen optionCache. + */ + FREE(ctx->optionCache.values); + /* No particular reason to wait for command completion before * destroying a context, but it is probably worthwhile flushing it * to avoid having to add code elsewhere to cope with flushing a |