Mercurial > mplayer.hg
view get_path.c @ 3328:67bcfb9749df
Tried fixing a bug relating to users with digital audio output (I'm unable to test if this works myself since I don't have a decoder)
author | mswitch |
---|---|
date | Tue, 04 Dec 2001 23:13:15 +0000 |
parents | 6a74454ea121 |
children | d21bae2028a6 |
line wrap: on
line source
char *get_path(char *filename){ char *homedir; char *buff; static char *config_dir = "/.mplayer"; int len; if ((homedir = getenv("HOME")) == NULL) return NULL; len = strlen(homedir) + strlen(config_dir) + 1; if (filename == NULL) { if ((buff = (char *) malloc(len)) == NULL) return NULL; sprintf(buff, "%s%s", homedir, config_dir); } else { len += strlen(filename) + 1; if ((buff = (char *) malloc(len)) == NULL) return NULL; sprintf(buff, "%s%s/%s", homedir, config_dir, filename); } return buff; }