]> git.meshlink.io Git - catta/commitdiff
Minor cleanups
authorLennart Poettering <lennart@poettering.net>
Sat, 15 Oct 2005 23:30:48 +0000 (23:30 +0000)
committerLennart Poettering <lennart@poettering.net>
Sat, 15 Oct 2005 23:30:48 +0000 (23:30 +0000)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@784 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

avahi-compat-libdns_sd/compat.c
avahi-compat-libdns_sd/funcs.txt

index 9b7ff8b3f7507df3863e2ca74b3af449fa08a9f0..e56168b91f859b0f180d70c9ab849dd6b9b26abc 100644 (file)
@@ -845,11 +845,10 @@ static void reg_client_callback(AvahiClient *s, AvahiClientState state, void* us
         return;
     
     switch (state) {
-        case AVAHI_CLIENT_DISCONNECTED: {
+        case AVAHI_CLIENT_DISCONNECTED: 
 
             reg_report_error(sdref, kDNSServiceErr_NoError);
             break;
-        }
         
         case AVAHI_CLIENT_S_RUNNING: {
             int ret;
@@ -859,6 +858,7 @@ static void reg_client_callback(AvahiClient *s, AvahiClientState state, void* us
                 /* If the service name is taken from the host name, copy that */
 
                 avahi_free(sdref->service_name_chosen);
+                sdref->service_name_chosen = NULL;
 
                 if (!(n = avahi_client_get_host_name(sdref->client))) {
                     reg_report_error(sdref, map_error(avahi_client_errno(sdref->client)));
@@ -982,7 +982,9 @@ DNSServiceErrorType DNSSD_API DNSServiceRegister (
     sdref->service_host = host ? avahi_normalize_name_strdup(host) : NULL;
     sdref->service_interface = interface == kDNSServiceInterfaceIndexAny ? AVAHI_IF_UNSPEC : (AvahiIfIndex) interface;
     sdref->service_port = ntohs(port);
-    sdref->service_txt = txtRecord ? avahi_string_list_parse(txtRecord, txtLen) : NULL;
+    sdref->service_txt = txtRecord && txtLen > 0 ? avahi_string_list_parse(txtRecord, txtLen) : NULL;
+
+    /* Some OOM checking would be cool here */
     
     ASSERT_SUCCESS(pthread_mutex_lock(&sdref->mutex));
     
index 8bafc1a92ddb2dc8b581235c81066fc2c02e3ec9..a584b4e72b39f3ab0e29893d5b10baae72a4fe0d 100644 (file)
@@ -1,4 +1,4 @@
-Supported:
+-- Supported --
 
 DNSServiceRefSockFD
 DNSServiceProcessResult
@@ -20,7 +20,7 @@ TXTRecordGetValuePtr
 TXTRecordGetCount
 TXTRecordGetItemAtIndex
 
-Unsupported:
+-- Unsupported but Relevant --
 
 DNSServiceRegisterRecord
 DNSServiceQueryRecord
@@ -29,4 +29,9 @@ DNSServiceCreateConnection
 DNSServiceAddRecord
 DNSServiceUpdateRecord
 DNSServiceRemoveRecord
+
+-- Unsupported and Irrelevant --
+
 DNSServiceSetDefaultDomainForUser
+
+$Id$