summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/hud/hud_nic.c
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2019-03-19 14:11:09 +0000
committerEric Engestrom <[email protected]>2019-04-04 13:59:24 +0000
commit4633d13854ffb64db476711afd97e00f60c4345a (patch)
treec43fe7a61d78bf2018d1eadbe44c5dac43f2eb73 /src/gallium/auxiliary/hud/hud_nic.c
parentb563460b494e9228cf5bb1aa4a70ac2499ad81fe (diff)
gallium/hud: fix memory leaks
Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/hud/hud_nic.c')
-rw-r--r--src/gallium/auxiliary/hud/hud_nic.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/hud/hud_nic.c b/src/gallium/auxiliary/hud/hud_nic.c
index b6c0d9edd55..5fab3319db2 100644
--- a/src/gallium/auxiliary/hud/hud_nic.c
+++ b/src/gallium/auxiliary/hud/hud_nic.c
@@ -272,8 +272,10 @@ hud_nic_graph_install(struct hud_pane *pane, const char *nic_name,
}
else if (nic->mode == NIC_RSSI_DBM)
snprintf(gr->name, sizeof(gr->name), "%s-rssi", nic->name);
- else
+ else {
+ free(gr);
return;
+ }
gr->query_data = nic;
gr->query_new_value = query_nic_load;