mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
core: fix potential memory leak
This commit is contained in:
parent
c3d83b17ea
commit
49fd49f21f
1 changed files with 3 additions and 1 deletions
|
|
@ -1982,8 +1982,10 @@ static char *get_path(const char *fn, pa_bool_t prependmid, pa_bool_t rt) {
|
|||
if (fn) {
|
||||
char *r;
|
||||
|
||||
if (pa_is_path_absolute(fn))
|
||||
if (pa_is_path_absolute(fn)) {
|
||||
pa_xfree(rtp);
|
||||
return pa_xstrdup(fn);
|
||||
}
|
||||
|
||||
if (!rtp)
|
||||
return NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue