Displaying 1 result from an estimated 1 matches for "cnt_drive".
Did you mean:
cnt_drives
2020 Feb 20
0
buffer overflow detected in collectd using libguestfs
...me virt plugin read function is
invoked is given below. I need to mention that the code presented here
lacks proper cleanup.
/* guestfs_extend start */
/* get FS stats using libguestfs */
/* Filesystems. */
guestfs_h *g = NULL;
int ret = 0;
int j = 0;
int cnt_drives = 0;
char **fses = NULL;
struct guestfs_statvfs *fs_stats = NULL;
struct fs_info *fs = NULL;
/* Work around collectd bug with waitpid() after fork() */
signal (SIGCHLD, SIG_DFL);
g = guestfs_create();
if (g == NULL) {
ERROR(PLUGIN_NAME " pl...