Christian Costa titan.costa@wanadoo.fr writes:
- int npfd;
- struct pollfd *pfd;
- npfd = snd_seq_poll_descriptors_count(midiSeq, POLLIN);
- pfd = (struct pollfd *)alloca(npfd * sizeof(struct pollfd));
You should not use alloca in Wine, it's not portable enough.