Skip to content

MYAudioTapProcessor.m: tap_ProcessCallback function has a bug: Array access (via field 'channelVolumeList') results in a null pointer dereference #8

@markm68k

Description

@markm68k

if (context->channelVolumeList == 0) {
NSLog(@"Error! could not initialize channel volume list");
}

Below is a fix:

        if (context->channelVolumeList == NULL) {
            NSLog(@"Error! could not initialize channel volume list");
            return;
        }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions