libjail: Handle an error from reallocarray() when trimming the buffer.

There is no API guarantee that realloc() will not fail when the buffer
is shrinking.  Handle it by simply returning the untrimmed buffer.
While this is unlikely to ever happen in practice, it seems worth
handling just to silence static analyzer warnings.

PR:		243106
Submitted by:	Hans Christian Woithe <chwoithe@yahoo.com>
MFC after:	1 week
This commit is contained in:
Mark Johnston 2020-01-07 21:44:27 +00:00
parent e9edde4110
commit accd6aa25e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=356476

View File

@ -262,7 +262,10 @@ jailparam_all(struct jailparam **jpp)
goto error; goto error;
mib1[1] = 2; mib1[1] = 2;
} }
jp = reallocarray(jp, njp, sizeof(*jp)); /* Just return the untrimmed buffer if reallocarray() somehow fails. */
tjp = reallocarray(jp, njp, sizeof(*jp));
if (tjp != NULL)
jp = tjp;
*jpp = jp; *jpp = jp;
return (njp); return (njp);