]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
STABLE12-ptserver-catch-empty-idlist-20020831
authorDerrick Brashear <shadow@dementia.org>
Wed, 21 Aug 2002 22:13:24 +0000 (22:13 +0000)
committerDerrick Brashear <shadow@dementia.org>
Wed, 21 Aug 2002 22:13:24 +0000 (22:13 +0000)
based on report from joda+openafs@pdc.kth.se
consistent with what the opposite transform does

(cherry picked from commit c6fcaad9e8b7374d0fd5ca579b0559f599b9e0f7)

src/ptserver/ptprocs.c

index 9336a06f977ab38bf251c534cc42cf86193ef68c..8d01b0d476a3b8aeedaf59959825bc3968e596f2 100644 (file)
@@ -524,7 +524,8 @@ afs_int32 idToName (call, aid, aname)
 
     /* leave this first for rpc stub */
     size = aid->idlist_len;
-    if (size <= 0) size = 0;
+    if (size == 0) return 0;
+    if (size <  0) return PRTOOMANY;
     aname->namelist_val = (prname *)malloc(size*PR_MAXNAMELEN);
     aname->namelist_len = 0;
     if (aname->namelist_val == 0) return PRNOMEM;