diff options
author | Brian Paul <[email protected]> | 2013-06-24 10:43:16 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-06-24 14:23:54 -0600 |
commit | e3cbb18321b530ab01f57f21b22d38b89efcaec4 (patch) | |
tree | dc168a65eda92fa8109dc25fac8109b3476912b6 /src/gallium/auxiliary/hud/hud_private.h | |
parent | e5bf19ac1cf28fb588d8caf9397cd3c016737378 (diff) |
gallium/hud: do not use free() for the free_query_data hook
That confuses Gallium's memory debugging code where CALLOC/MALLOC
must be matched with FREE, not free().
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/hud/hud_private.h')
-rw-r--r-- | src/gallium/auxiliary/hud/hud_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/hud/hud_private.h b/src/gallium/auxiliary/hud/hud_private.h index 2b7d56bb1ad..1606ada4adf 100644 --- a/src/gallium/auxiliary/hud/hud_private.h +++ b/src/gallium/auxiliary/hud/hud_private.h @@ -42,7 +42,7 @@ struct hud_graph { char name[128]; void *query_data; void (*query_new_value)(struct hud_graph *gr); - void (*free_query_data)(void *ptr); + void (*free_query_data)(void *ptr); /**< do not use ordinary free() */ /* mutable variables */ unsigned num_vertices; |