- replace all the xmalloc crap by glib memory management functions

This commit is contained in:
Bastien Nocera
2003-10-20 13:55:44 +00:00
parent af8478ca5f
commit ba36a20cb8
60 changed files with 209 additions and 951 deletions

View File

@@ -151,7 +151,7 @@ output (pid_t pid)
(unsigned long) data.proc_args.size,
args ? args : "");
glibtop_free (args);
g_free (args);
printf ("\n");
@@ -291,7 +291,7 @@ main (int argc, char *argv [])
output (pid);
}
glibtop_free (ptr);
g_free (ptr);
exit (0);
}