Ticket #200: pulseaudio-0.9.8-noshm.patch

File pulseaudio-0.9.8-noshm.patch, 359 bytes (added by matthijs, 4 years ago)

Fix

  • src/pulsecore/shm.c

    old new  
    318318 
    319319int pa_shm_cleanup(void) { 
    320320 
     321#ifdef HAVE_SHM_OPEN 
    321322#ifdef SHM_PATH 
    322323    DIR *d; 
    323324    struct dirent *de; 
     
    375376    } 
    376377 
    377378    closedir(d); 
    378 #endif 
     379#endif /* SHM_PATH */ 
     380#endif /* HAVE_SHM_OPEN */ 
    379381 
    380382    return 0; 
    381383}