summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorMartin Galvan <martin.galvan@tallertechnologies.com>2015-09-03 15:25:35 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-09-03 15:43:03 -0500
commitefb798e16ef9719b63e428e55eb039ffc79d11a0 (patch)
tree2dddc6b16c149ed3184729acc3d64df561fb9aeb /cpukit
parentcpukit/libmisc/dumpbuf/dumpbuf.c: Fix undefined behavior for sprintf() (diff)
downloadrtems-efb798e16ef9719b63e428e55eb039ffc79d11a0.tar.bz2
cpukit/libnetworking/rtems/rtems_dhcp.c: Fix compilation error
Apparently 'free' is defined as a macro which takes two arguments and calls rtems_bsdnet_free. When fixing #2405 I added a missing 'free' but didn't notice it was non-standard. Closes #2410.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/libnetworking/rtems/rtems_dhcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libnetworking/rtems/rtems_dhcp.c b/cpukit/libnetworking/rtems/rtems_dhcp.c
index 87be238ddb..cb6966d833 100644
--- a/cpukit/libnetworking/rtems/rtems_dhcp.c
+++ b/cpukit/libnetworking/rtems/rtems_dhcp.c
@@ -405,7 +405,7 @@ process_options (unsigned char *optbuf, int optbufSize)
strncpy (dhcp_hostname, p, len);
} else { /* realloc failed */
printf ("dhcpc: realloc failed (%s:%d)", __FILE__, __LINE__);
- free (dhcp_hostname);
+ free (dhcp_hostname, 0);
dhcp_hostname = NULL;
}
} else { /* dhcp_hostname == NULL */