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:
markj 2020-01-07 21:44:27 +00:00
parent 33073a3d8c
commit aa54f39068

View File

@ -262,7 +262,10 @@ jailparam_all(struct jailparam **jpp)
goto error;
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;
return (njp);