ports/comms/gnokii/files/patch-common-cfgreader.c
Guido Falsi 8274f12d4f - Fix configure when both X11 and SMSD options are off [1]
(this port always requires glib20)
- While here regenerate patches to silence portlint warnings

Reporterd by:	Marc van Houtum <marc at dutchsecurity.net> (by email) [1]
2015-06-15 14:36:21 +00:00

20 lines
662 B
C

--- common/cfgreader.c.orig 2011-12-02 14:53:04 UTC
+++ common/cfgreader.c
@@ -991,7 +991,7 @@ static bool cfg_get_log_target(gn_log_ta
#define CHECK_SIZE() if (*retval >= size) { \
void *aux; \
size *= 2; \
- aux = realloc(config_file_locations, size); \
+ aux = realloc(config_file_locations, size * sizeof(char *)); \
if (aux) \
config_file_locations = aux; \
else {\
@@ -1107,7 +1107,7 @@ static char **get_locations(int *retval)
if (i >= xcd_size) {
void *aux;
xcd_size *= 2;
- aux = realloc(xdg_config_dir, xcd_size);
+ aux = realloc(xdg_config_dir, xcd_size * sizeof(char *));
if (aux)
xdg_config_dir = aux;
else {