diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-03 19:52:19 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-03 19:52:19 +0100 |
commit | 202ff3128712ce9f11fe95a171e23ec701f53820 (patch) | |
tree | 6ecf8245304b1d2ab22da83e22c387af74c8a0b4 /src/ft_get_music.c | |
parent | Better music command handling (diff) | |
download | 42-cub3d-202ff3128712ce9f11fe95a171e23ec701f53820.tar.gz 42-cub3d-202ff3128712ce9f11fe95a171e23ec701f53820.tar.bz2 42-cub3d-202ff3128712ce9f11fe95a171e23ec701f53820.tar.xz 42-cub3d-202ff3128712ce9f11fe95a171e23ec701f53820.tar.zst 42-cub3d-202ff3128712ce9f11fe95a171e23ec701f53820.zip |
Now better handling
Diffstat (limited to 'src/ft_get_music.c')
-rw-r--r-- | src/ft_get_music.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_get_music.c b/src/ft_get_music.c index 280a6c2..fe39361 100644 --- a/src/ft_get_music.c +++ b/src/ft_get_music.c @@ -21,8 +21,8 @@ static void uint8_t len; len = ft_strlen(mlist->music_path); - len += ft_strlen(FT_MUS_CMD); - ft_memdel((void**)&mlist->music_cmd) - 2; + len += ft_strlen(FT_MUS_CMD) - 2; + ft_memdel((void**)&mlist->music_cmd); if (!(mlist->music_cmd = (char *)malloc((len + 1) * sizeof(char)))) return ; ft_sprintf(mlist->music_cmd, FT_MUS_CMD, |