From: Jim Rees Date: Thu, 20 Jan 2005 18:00:28 +0000 (+0000) Subject: alloc-confusion-20040120 X-Git-Tag: BP-disconnected~34 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=a0ce71a84374cc0600813a3101b76f89df04ee76;p=packages%2Fo%2Fopenafs.git alloc-confusion-20040120 use osi_Alloc instead of osi_AllocLargeSpace for tokens, to match free --- diff --git a/src/afs/afs_pioctl.c b/src/afs/afs_pioctl.c index 84a732986..c1cd5e161 100644 --- a/src/afs/afs_pioctl.c +++ b/src/afs/afs_pioctl.c @@ -1119,8 +1119,9 @@ afs_HandlePioctl(struct vnode *avp, afs_int32 acom, if (inSize > MAXPIOCTLTOKENLEN || inSize < 0 || ablob->out_size < 0) return E2BIG; + /* Note that we use osi_Alloc for large allocs and osi_AllocLargeSpace for small ones */ if (inSize > AFS_LRALLOCSIZ) { - inData = osi_AllocLargeSpace(inSize + 1); + inData = osi_Alloc(inSize + 1); } else { inData = osi_AllocLargeSpace(AFS_LRALLOCSIZ); }