public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* Mem-leaks in 'test-as.c'
@ 2020-10-24  8:12 Gisle Vanem
  0 siblings, 0 replies; only message in thread
From: Gisle Vanem @ 2020-10-24  8:12 UTC (permalink / raw)
  To: location

[-- Attachment #1: Type: text/plain, Size: 1311 bytes --]

Michael Tremer wrote:

> First thing to know is that we use reference counting for all objects.
> So every pointer that refers to an object has to decrement
> the counter when it no longer needs it. The object will be automatically
> cleaned up after nothing needs it any more.

In 'test-as.c', I get a huge amount of leaks in MSVC
debug-mode. Since 'loc_database_enumerator_unref()' just
unreferences itself and not the 'as' (working as designed?)
IMHO it should be:

--- a/test-as.c 2020-10-19 17:35:01
+++ b/test-as.c 2020-10-24 10:01:57
@@ -111,12 +111,17 @@

         while (as) {
                 printf("Found AS%d: %s\n", loc_as_get_number(as), loc_as_get_name(as));

-               err = loc_database_enumerator_next_as(enumerator, &as);
+               struct loc_as* as_next;
+
+               err = loc_database_enumerator_next_as(enumerator, &as_next);
                 if (err) {
                         fprintf(stderr, "Could not enumerate next AS\n");
                         exit(EXIT_FAILURE);
                 }
+               loc_as_unref(as);
+               as = as_next;
         }

         loc_database_enumerator_unref(enumerator);

With that patch, no reported leaks.

Could be leaks in 'libloc' itself too; haven't checked yet.

-- 
--gv


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-10-24  8:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-24  8:12 Mem-leaks in 'test-as.c' Gisle Vanem

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox