From c6fcaad9e8b7374d0fd5ca579b0559f599b9e0f7 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Wed, 21 Aug 2002 22:12:58 +0000 Subject: [PATCH] ptserver-catch-empty-idlist-20020831 based on report from joda+openafs@pdc.kth.se consistent with what the opposite transform does --- src/ptserver/ptprocs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.39.5