filecount plugin: Fixed an off-by-one error in the configuration code.
authorSebastian Harl <sh@tokkee.org>
Thu, 30 Oct 2008 15:27:37 +0000 (16:27 +0100)
committerSebastian Harl <sh@tokkee.org>
Thu, 30 Oct 2008 15:39:18 +0000 (16:39 +0100)
The memory allocated to store the information about configured directories did
not take into account the newly added directory. This would cause a segfault
at some point of time (when specifying more than four directories in my case).

Thanks to Martin Janota <janota.m@cce.cz> for finding and reporting this bug.

src/filecount.c

index 55b3655..f071379 100644 (file)
@@ -371,7 +371,7 @@ static int fc_config_add_dir (oconfig_item_t *ci)
     fc_directory_conf_t **temp;
 
     temp = (fc_directory_conf_t **) realloc (directories,
-        sizeof (*directories) * directories_num);
+        sizeof (*directories) * (directories_num + 1));
     if (temp == NULL)
     {
       ERROR ("filecount plugin: realloc failed.");