winmm: Load only one sound driver at a time.

This commit is contained in:
Alexandre Julliard 2008-01-16 19:15:25 +01:00
parent 293ec5843d
commit 9d3dcae1fb
1 changed files with 1 additions and 1 deletions

View File

@ -687,7 +687,7 @@ BOOL MMDRV_Init(void)
char *next = strchr(p, ',');
if (next) *next++ = 0;
sprintf( filename, "wine%s.drv", p );
ret |= MMDRV_Install( filename, filename, FALSE );
if ((ret = MMDRV_Install( filename, filename, FALSE ))) break;
p = next;
}