Bug fix: Memory corruption when reading bootable image that was truncated
before the storage location of the boot catalog
This commit is contained in:
@ -55,6 +55,8 @@ void iso_node_ref(IsoNode *node)
|
||||
*/
|
||||
void iso_node_unref(IsoNode *node)
|
||||
{
|
||||
if (node == NULL)
|
||||
return;
|
||||
if (--node->refcount == 0) {
|
||||
switch (node->type) {
|
||||
case LIBISO_DIR:
|
||||
|
Reference in New Issue
Block a user