aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_sfx_footstep.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-24 18:37:59 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-24 18:37:59 +0200
commit40ca3988b960128deb2c38b444699e5d8e2f85eb (patch)
treeffefb5f5adfbf2741929a63621823468e81ea6fd /src/ft_sfx_footstep.c
parentCleaner (diff)
download42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.tar.gz
42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.tar.bz2
42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.tar.xz
42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.tar.zst
42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.zip
Works but leaks
Diffstat (limited to 'src/ft_sfx_footstep.c')
-rw-r--r--src/ft_sfx_footstep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_sfx_footstep.c b/src/ft_sfx_footstep.c
index 628660b..5b8fe8a 100644
--- a/src/ft_sfx_footstep.c
+++ b/src/ft_sfx_footstep.c
@@ -32,10 +32,10 @@ void
if (ref % 2)
{
if (system(sfx[1].cmd))
- pthread_exit(NULL);
+ pthread_cancel(pthread_self());
}
else if (system(sfx[1].cmd_alt))
- pthread_exit(NULL);
+ pthread_cancel(pthread_self());
}
return (NULL);
}