(MuttIndexWindow->cols - 4) :
((MuttIndexWindow->cols - 4) < 72) ? (MuttIndexWindow->cols - 4) : 72);
stte.line_max = stte.wrap_margin * 4;
- stte.line = mutt_mem_calloc(1, (stte.line_max + 1) * sizeof(wchar_t));
- stte.param = mutt_mem_calloc(1, 256 * sizeof(wchar_t));
+ stte.line = mutt_mem_calloc((stte.line_max + 1), sizeof(wchar_t));
+ stte.param = mutt_mem_calloc(256, sizeof(wchar_t));
stte.param_len = 256;
stte.param_used = 0;
menu->help = mutt_compile_help(helpstr, sizeof(helpstr), MENU_ATTACH, AttachHelp);
mutt_menu_push_current(menu);
- struct AttachCtx *actx = mutt_mem_calloc(sizeof(struct AttachCtx), 1);
+ struct AttachCtx *actx = mutt_mem_calloc(1, sizeof(struct AttachCtx));
actx->email = e;
actx->fp_root = msg->fp;
mutt_update_recvattach_menu(actx, menu, true);