* nis/nis_callback.c (__nis_create_callback): Calls to cvs/fedora-glibc-20060519T1550
authorUlrich Drepper <drepper@redhat.com>
Fri, 19 May 2006 08:23:43 +0000 (08:23 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 19 May 2006 08:23:43 +0000 (08:23 +0000)
svcudp_bufcreate and svctcp_create can fail.  Free ->xprt if
asprintf call fails.

ChangeLog
nis/nis_callback.c

index cab8422e528c0d8c233d8f188f3d91bab8c360ff..944e6bcd6e583aa5b7d678723a329150e415b4d8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2006-05-19  Ulrich Drepper  <drepper@redhat.com>
 
+       * nis/nis_callback.c (__nis_create_callback): Calls to
+       svcudp_bufcreate and svctcp_create can fail.  Free ->xprt if
+       asprintf call fails.
+
        * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
        no uninitialized memory is passed to sendto.
 
index 86d2a5faebe2312ef29e6995cfe8f84b5129b1fe..6582315c7085b35cbedca6b9ef68625be1339d83 100644 (file)
@@ -276,6 +276,7 @@ __nis_create_callback (int (*callback) (const_nis_name, const nis_object *,
   struct sockaddr_in sin;
   socklen_t len = sizeof (struct sockaddr_in);
   unsigned short port;
+  int nomsg = 0;
 
   cb = (struct nis_cb *) calloc (1,
                                 sizeof (struct nis_cb) + sizeof (nis_server));
@@ -324,8 +325,14 @@ __nis_create_callback (int (*callback) (const_nis_name, const nis_object *,
   cb->serv->ep.ep_val[0].proto = strdup ((flags & USE_DGRAM) ? "udp" : "tcp");
   if (__builtin_expect (cb->serv->ep.ep_val[0].proto == NULL, 0))
     goto failed;
-  cb->xprt = (flags & USE_DGRAM) ? svcudp_bufcreate (sock, 100, 8192) :
-                                  svctcp_create (sock, 100, 8192);
+  cb->xprt = ((flags & USE_DGRAM)
+             ? svcudp_bufcreate (sock, 100, 8192)
+             : svctcp_create (sock, 100, 8192));
+  if (cb->xprt == NULL)
+    {
+      nomsg = 1;
+      goto failed;
+    }
   cb->sock = cb->xprt->xp_sock;
   if (!svc_register (cb->xprt, CB_PROG, CB_VERS, cb_prog_1, 0))
     {
@@ -359,11 +366,14 @@ __nis_create_callback (int (*callback) (const_nis_name, const nis_object *,
  failed:
   if (cb)
     {
+      if (cb->xprt)
+       svc_destroy (cb->xprt);
       if (cb->serv)
        xdr_free ((xdrproc_t) _xdr_nis_server, (char *) cb->serv);
       free (cb);
     }
-  syslog (LOG_ERR, "NIS+: out of memory allocating callback");
+  if (!nomsg)
+    syslog (LOG_ERR, "NIS+: out of memory allocating callback");
   return NULL;
 }