Kaydet (Commit) cdb6ea23 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#1224978 integer overflow

Change-Id: Ie7dd90e6e395fb84802758e7d90ffac010dcced0
üst 170aff24
......@@ -88,7 +88,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
aInput >> sTemp;
while( !aInput.eof() )
{
const OString sXhpFile( sTemp.data(), sTemp.length() );
const OString sXhpFile( sTemp.data(), (sal_Int32)sTemp.length() );
HelpParser aParser( sXhpFile );
const OString sOutput(
aArgs.m_sOutputFile +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment