D | simple_abst.c | 68 char *xlib, *path, errbuf[256]; in try_open() local 77 xlib = malloc(strlen(lib) + strlen(path) + 1 + 1); in try_open() 78 if (xlib == NULL) in try_open() 80 strcpy(xlib, path); in try_open() 81 strcat(xlib, "/"); in try_open() 82 strcat(xlib, lib); in try_open() 83 h = INTERNAL(snd_dlopen)(xlib, RTLD_NOW, errbuf, sizeof(errbuf)); in try_open() 85 SNDERR("Unable to open library '%s' (%s)", xlib, errbuf); in try_open() 86 free(xlib); in try_open() 92 SNDERR("Symbol 'alsa_mixer_simple_event' was not found in '%s'", xlib); in try_open() [all …]
|