Commit 7ad5eabd 7ad5eabd928687d4f6a7139db79ad48ffb5a30a8 by Sergey Poznyakoff

(finish_stream): Set map.first if necessary

(burst_digest): Initialize eb_length
(burst_rename): Skip messages that do not need to be renamed.
(main): Do not process inplace if burst_count is 0
1 parent 7f45e402
......@@ -233,6 +233,8 @@ finish_stream (mu_stream_t *pstr)
mu_message_t msg;
mu_stream_seek (*pstr, 0, SEEK_SET);
msg = mh_stream_to_message (*pstr);
if (!map.first)
mu_mailbox_uidnext (tmpbox, &map.first);
burst_or_copy (msg, recursive, 1);
mu_stream_close (*pstr);
mu_stream_destroy (pstr, mu_stream_get_owner (*pstr));
......@@ -271,7 +273,7 @@ burst_digest (mu_message_t msg)
size_t n;
int state = S1;
size_t count = 0;
int eb_length;
int eb_length = 0;
mu_message_size (msg, &bufsize);
......@@ -461,6 +463,9 @@ burst_rename (mh_msgset_t *ms, size_t lastuid)
j--;
}
if (ms->list[i-1] == lastuid)
continue;
asprintf (&from, "%lu", (unsigned long) ms->list[i-1]);
asprintf (&to, "%lu", (unsigned long) lastuid);
--lastuid;
......@@ -588,7 +593,7 @@ main (int argc, char **argv)
if (rc)
return rc;
if (inplace)
if (inplace && burst_count)
{
mu_url_t dst_url = NULL;
size_t i, next_uid, last_uid;
......