Removed assignment of an unused function result. Coverity CID 12594.

This commit is contained in:
Thomas Schmitt 2015-10-11 09:49:15 +02:00
parent 50132d4ff7
commit a4c1e04820
1 changed files with 2 additions and 2 deletions

View File

@ -2688,8 +2688,8 @@ int read_el_torito_boot_catalog(_ImageFsData *data, uint32_t block)
/* >>> ts B10703 : need to continue rather than abort */; /* >>> ts B10703 : need to continue rather than abort */;
ret = iso_msg_submit(data->msgid, ISO_EL_TORITO_WARN, 0, iso_msg_submit(data->msgid, ISO_EL_TORITO_WARN, 0,
"Too many boot images found. List truncated."); "Too many boot images found. List truncated.");
goto after_bootblocks; goto after_bootblocks;
} }
/* Read bootblock from section entry */ /* Read bootblock from section entry */