mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2026-05-05 02:58:02 +02:00
daemon: plug huge memleak in GetStatistics
Reproducible by executing `upower -d` or by calling the DBus method
org.freedesktop.UPower.Device.GetStatistics(charging).
up_device_get_statistics ->
up_history_get_profile_data ->
up_stats_item_new.
https://bugs.freedesktop.org/show_bug.cgi?id=82659
This commit is contained in:
parent
8988f06986
commit
d1971e4d16
1 changed files with 1 additions and 1 deletions
|
|
@ -299,7 +299,7 @@ up_history_get_profile_data (UpHistory *history, gboolean charging)
|
|||
g_return_val_if_fail (UP_IS_HISTORY (history), NULL);
|
||||
|
||||
/* create 100 item list and set to zero */
|
||||
data = g_ptr_array_new ();
|
||||
data = g_ptr_array_new_full (101, g_object_unref);
|
||||
for (i=0; i<101; i++) {
|
||||
stats = up_stats_item_new ();
|
||||
g_ptr_array_add (data, stats);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue