- Timestamp:
- Aug 9, 2016, 8:06:45 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r507 r509 12 12 dnl start 13 13 dnl 14 AM_INIT_AUTOMAKE(samhain, 4.1. 4)14 AM_INIT_AUTOMAKE(samhain, 4.1.5) 15 15 AC_DEFINE([SAMHAIN], 1, [Application is samhain]) 16 16 AC_CANONICAL_HOST -
trunk/docs/Changelog
r507 r509 1 4.1.4: 1 4.1.5: 2 * fix memory leak in server (reported by C. Doerr). 3 4 4.1.4 (02-06-2016): 2 5 * fix problems with wildcard pattern re-evaluation (reported by 3 6 A. Ansari): -
trunk/src/sh_calls.c
r503 r509 737 737 if ((val_return < 0) && (*o_noatime != 0)) 738 738 { 739 /* cppcheck-suppress resourceLeak */ 739 740 val_return = open (pathname, flags, mode); 740 741 if (val_return >= 0) -
trunk/src/sh_ipvx.c
r481 r509 302 302 break; 303 303 } 304 freeaddrinfo(res); 304 305 return 1; 305 306 #else … … 382 383 if (err == 0) 383 384 { 385 struct addrinfo * res_orig = res; 386 384 387 #if defined(AI_CANONNAME) 385 388 if (res->ai_canonname && strlen(res->ai_canonname) > 0) … … 413 416 res = res->ai_next; 414 417 } 418 419 freeaddrinfo(res_orig); 415 420 } 416 421 #else -
trunk/test/testcompile.sh
r481 r509 94 94 # 95 95 cd src/ 96 stat=`cppcheck --quiet -- inline-suppr --force -j 4 --template="{file},{line},{severity},{id},{message}" -I. -I.. -I../include sh_*.c samhain.c slib.c dnmalloc.c zAVLTree.c trustfile.c rijndael-*.c bignum.c 2>&1 | wc -l`96 stat=`cppcheck --quiet --library=posix.cfg --inline-suppr --force -j 4 --template="{file},{line},{severity},{id},{message}" -I. -I.. -I../include sh_*.c samhain.c slib.c dnmalloc.c zAVLTree.c trustfile.c rijndael-*.c bignum.c 2>&1 | wc -l` 97 97 if [ $stat -ne 0 ]; then 98 cppcheck --quiet -- inline-suppr --force -j 4 --template="{file},{line},{severity},{id},{message}" -I. -I.. -I../include sh_*.c samhain.c slib.c dnmalloc.c zAVLTree.c trustfile.c rijndael-*.c bignum.c >>../test_log 2>&198 cppcheck --quiet --library=posix.cfg --inline-suppr --force -j 4 --template="{file},{line},{severity},{id},{message}" -I. -I.. -I../include sh_*.c samhain.c slib.c dnmalloc.c zAVLTree.c trustfile.c rijndael-*.c bignum.c >>../test_log 2>&1 99 99 retval=1 100 100 [ -z "$quiet" ] && log_fail $2 ${MAXTEST} "check w/cppcheck";
Note:
See TracChangeset
for help on using the changeset viewer.