From: Derrick Brashear Date: Wed, 21 Aug 2002 22:12:58 +0000 (+0000) Subject: ptserver-catch-empty-idlist-20020831 X-Git-Tag: BP-openafs-rxkad-krb5~11 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=c6fcaad9e8b7374d0fd5ca579b0559f599b9e0f7;p=packages%2Fo%2Fopenafs.git ptserver-catch-empty-idlist-20020831 based on report from joda+openafs@pdc.kth.se consistent with what the opposite transform does --- diff --git a/src/ptserver/ptprocs.c b/src/ptserver/ptprocs.c index 10f5e2e4e..91c5f470c 100644 --- a/src/ptserver/ptprocs.c +++ b/src/ptserver/ptprocs.c @@ -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;