increased max attributes value to 200

This commit is contained in:
Jean-Francois Dockes 2017-01-28 10:01:59 +01:00
parent 217eb388e2
commit 90bae886c2

View File

@ -266,9 +266,9 @@ bool MimeHandlerExecMultiple::next_document()
LOGDEB("MHExecMultiple: got [" << nm << "] -> [" << data << "]\n"); LOGDEB("MHExecMultiple: got [" << nm << "] -> [" << data << "]\n");
m_metaData[nm] += data; m_metaData[nm] += data;
} }
if (loop == 20) { if (loop == 200) {
// ?? // ??
LOGERR("MHExecMultiple: filter sent too many parameters\n"); LOGERR("MHExecMultiple: handler sent more than 200 attributes\n");
return false; return false;
} }
} }