summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/disk_buf.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/disk_buf.c')
-rw-r--r--apps/plugins/mpegplayer/disk_buf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/mpegplayer/disk_buf.c b/apps/plugins/mpegplayer/disk_buf.c
index df5e005b50..c008139356 100644
--- a/apps/plugins/mpegplayer/disk_buf.c
+++ b/apps/plugins/mpegplayer/disk_buf.c
@@ -835,7 +835,7 @@ void disk_buf_reply_msg(intptr_t retval)
835 835
836bool disk_buf_init(void) 836bool disk_buf_init(void)
837{ 837{
838 disk_buf.thread = NULL; 838 disk_buf.thread = 0;
839 list_initialize(&nf_list); 839 list_initialize(&nf_list);
840 840
841 rb->mutex_init(&disk_buf_mtx); 841 rb->mutex_init(&disk_buf_mtx);
@@ -893,7 +893,7 @@ bool disk_buf_init(void)
893 rb->queue_enable_queue_send(disk_buf.q, &disk_buf_queue_send, 893 rb->queue_enable_queue_send(disk_buf.q, &disk_buf_queue_send,
894 disk_buf.thread); 894 disk_buf.thread);
895 895
896 if (disk_buf.thread == NULL) 896 if (disk_buf.thread == 0)
897 return false; 897 return false;
898 898
899 /* Wait for thread to initialize */ 899 /* Wait for thread to initialize */
@@ -904,10 +904,10 @@ bool disk_buf_init(void)
904 904
905void disk_buf_exit(void) 905void disk_buf_exit(void)
906{ 906{
907 if (disk_buf.thread != NULL) 907 if (disk_buf.thread != 0)
908 { 908 {
909 rb->queue_post(disk_buf.q, STREAM_QUIT, 0); 909 rb->queue_post(disk_buf.q, STREAM_QUIT, 0);
910 rb->thread_wait(disk_buf.thread); 910 rb->thread_wait(disk_buf.thread);
911 disk_buf.thread = NULL; 911 disk_buf.thread = 0;
912 } 912 }
913} 913}