[SCM] Resolv Wrapper Repository - branch master updated

Andreas Schneider asn at samba.org
Mon Aug 24 13:17:38 UTC 2015


The branch, master has been updated
       via  a805635 Bump version to 1.1.3
       via  1d5a911 tests: Call res_close in res_query and res_search tests
      from  671691a doc: Use kinit instead of dig in the manpage example

https://git.samba.org/?p=resolv_wrapper.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit a8056352b92e698bcf053cac5e100a860d2896c0
Author: Andreas Schneider <asn at samba.org>
Date:   Fri Aug 21 12:17:45 2015 +0200

    Bump version to 1.1.3
    
    Signed-off-by: Andreas Schneider <asn at samba.org>
    Reviewed-by: Stefan Metzmacher <metze at samba.org>

commit 1d5a9116ed7bf4fbe6864892d8af6fdfcb2f71ed
Author: Jakub Hrozek <jakub.hrozek at posteo.se>
Date:   Thu Aug 20 11:49:35 2015 +0200

    tests: Call res_close in res_query and res_search tests
    
    This fixes two memory leaks in the tests.
    
    Signed-off-by: Jakub Hrozek <jakub.hrozek at posteo.se>
    Reviewed-by: Andreas Schneider <asn at samba.org>
    Reviewed-by: Stefan Metzmacher <metze at samba.org>

-----------------------------------------------------------------------

Summary of changes:
 CMakeLists.txt                | 2 +-
 ChangeLog                     | 5 +++++
 tests/test_res_query_search.c | 4 ++++
 3 files changed, 10 insertions(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0d1947f..13db24c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -8,7 +8,7 @@ set(APPLICATION_NAME ${PROJECT_NAME})
 
 set(APPLICATION_VERSION_MAJOR "1")
 set(APPLICATION_VERSION_MINOR "1")
-set(APPLICATION_VERSION_PATCH "2")
+set(APPLICATION_VERSION_PATCH "3")
 
 set(APPLICATION_VERSION "${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}")
 
diff --git a/ChangeLog b/ChangeLog
index 071b5f3..08cbfa6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
 ChangeLog
 ==========
 
+version 1.1.3 (released 2015-01-13)
+  * Fixed symbol detection if macros are used for res_* functions
+  * Fixed strict aliasing warnings for symbol binding
+  * Added missing tests for req_query and res_search
+
 version 1.1.2 (released 2015-01-13)
   * Fix detection for ns_name_compress.
 
diff --git a/tests/test_res_query_search.c b/tests/test_res_query_search.c
index 616772c..cc43ca5 100644
--- a/tests/test_res_query_search.c
+++ b/tests/test_res_query_search.c
@@ -129,6 +129,8 @@ static void test_res_query(void **state)
 	assert_non_null(inet_ntop(AF_INET, ns_rr_rdata(rr),
 			addr, sizeof(addr)));
 	assert_string_equal(addr, "127.0.10.10");
+
+	res_close();
 }
 
 static void test_res_nsearch(void **state)
@@ -192,6 +194,8 @@ static void test_res_search(void **state)
 	assert_non_null(inet_ntop(AF_INET, ns_rr_rdata(rr),
 			addr, sizeof(addr)));
 	assert_string_equal(addr, "127.0.10.10");
+
+	res_close();
 }
 
 int main(void)


-- 
Resolv Wrapper Repository



More information about the samba-cvs mailing list