Commit b8c5000a b8c5000a532587e60eb857aa1a36e2723eb2d34f by Sergey Poznyakoff

Minor change.

* libmailutils/stream/stream.c (mu_stream_set_stat): Allow for statbuf==NULL.
1 parent 5416e044
......@@ -1238,8 +1238,11 @@ mu_stream_set_stat (mu_stream_t stream, int statmask,
{
if (stream == NULL)
return EINVAL;
if (!statbuf)
statmask = 0;
stream->statmask = statmask;
stream->statbuf = statbuf;
if (stream->statbuf)
memset (stream->statbuf, 0,
_MU_STREAM_STAT_MAX * sizeof (stream->statbuf[0]));
return 0;
......