fixed bug #39882 No function shall set errno to 0

This commit is contained in:
Simon Goldschmidt 2014-02-20 22:23:40 +01:00
parent c1dc1a20d6
commit 515e4b9187
2 changed files with 4 additions and 1 deletions

View File

@ -96,6 +96,9 @@ HISTORY
++ Bugfixes:
2014-02-20: Simon Goldschmidt
* sockets.c: fixed bug #39882 No function shall set errno to 0
2014-02-20: Simon Goldschmidt
* mib_structs.c: fixed bug #40050 SNMP problem with MIB arrays > 255

View File

@ -225,7 +225,7 @@ static const int err_to_errno_table[] = {
#ifdef ERRNO
#ifndef set_errno
#define set_errno(err) errno = (err)
#define set_errno(err) do { if (err) { errno = (err); } } while(0)
#endif
#else /* ERRNO */
#define set_errno(err)