Skip to content

Commit

Permalink
[ALSA] virmidi - fix ioctl parameter passing when creating seq port
Browse files Browse the repository at this point in the history
ALSA sequencer
The last change to reduce stack usage did not adjust the parameter to
SNDRV_SEQ_IOCTL_CREATE_PORT which resulted in passing the address of
the pointer instead of the structure.

Signed-off-by: Clemens Ladisch <[email protected]>
  • Loading branch information
cladisch authored and Jaroslav Kysela committed May 29, 2005
1 parent c1935b4 commit 0aa0d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/core/seq/seq_virmidi.c
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ static int snd_virmidi_dev_attach_seq(snd_virmidi_dev_t *rdev)
pcallbacks.unuse = snd_virmidi_unuse;
pcallbacks.event_input = snd_virmidi_event_input;
pinfo->kernel = &pcallbacks;
err = snd_seq_kernel_client_ctl(client, SNDRV_SEQ_IOCTL_CREATE_PORT, &pinfo);
err = snd_seq_kernel_client_ctl(client, SNDRV_SEQ_IOCTL_CREATE_PORT, pinfo);
if (err < 0) {
snd_seq_delete_kernel_client(client);
rdev->client = -1;
Expand Down

0 comments on commit 0aa0d38

Please sign in to comment.