From 7f3a36fb784f283cc40a0fdf7e23f3979ad7c74e Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 21 Aug 2015 18:36:12 -0600 Subject: [PATCH] Update ChangeLog --- ChangeLog | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index c6d94c3215..4a3e93db1b 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10853,11 +10853,16 @@ enabled. Fix size accounting when recvfrom_udpreadahead() sets state.rf_recvlen == -1. I have not checked if data are accumulated to the right position in the buffer however. From Pavel Pisa - (2015-08-15). + (2015-08-21). * sched/wdog/wd_create.c: Correct a counting error in the number of available watchdog timers. When the number of free timers is - low, the counter could be incremented below zero (2015-08-15). + low, the counter could be incremented below zero (2015-08-21). * arch/arm/src/stm32: Add OTG support for STM32F44x. From David - Sidrane (2015-08-15). - - + Sidrane (2015-08-21). + * arch/arm/src/lpc17: Actually implement options to use external + SDRAM and or SRAM for the heap. From Pavel Pisa (2015-08-21). + * gethostbyname(): correct returned address format when DNS is used. + The hostent.h_addr_list should point to raw in_addr or in6_addr + as defined in the standard. Original implementation used that + for numeric addresses but for DNS lookup returned pointer to + whole sockaddr_in or sockaddr_in6. From Pavel Pisa (2015-08-21).