diff options
author | nicm <nicm> | 2017-04-22 06:13:30 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-04-22 06:13:30 +0000 |
commit | 2c9bdd9e326723fb392aed4d8df12cba7ef34f1f (patch) | |
tree | 691b59eed3293ce346a7396cc95716f9ecdbc31a /options.c | |
parent | c8ecbf38ab09d00920e97bd9363e16a1ebed0fa7 (diff) | |
download | rtmux-2c9bdd9e326723fb392aed4d8df12cba7ef34f1f.tar.gz rtmux-2c9bdd9e326723fb392aed4d8df12cba7ef34f1f.tar.bz2 rtmux-2c9bdd9e326723fb392aed4d8df12cba7ef34f1f.zip |
Memory leaks, from David CARLIER.
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -433,7 +433,7 @@ options_match(const char *s, int *idx, int* ambiguous) if (*name == '@') { *ambiguous = 0; - return (xstrdup(name)); + return (name); } found = NULL; |