[vlc-commits] access: bluray: fix build
Tristan Matthews
git at videolan.org
Mon Jun 19 22:30:03 CEST 2017
vlc | branch: master | Tristan Matthews <tmatth at videolan.org> | Mon Jun 19 16:27:49 2017 -0400| [287bca2710fc8809af0cd9ccd0664b704a082563] | committer: Tristan Matthews
access: bluray: fix build
Regression from 740dd861a4b2e5780e48720af50935aa57a677b7
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=287bca2710fc8809af0cd9ccd0664b704a082563
---
modules/access/bluray.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/access/bluray.c b/modules/access/bluray.c
index e6c0653eef..7e4603a3ac 100644
--- a/modules/access/bluray.c
+++ b/modules/access/bluray.c
@@ -653,7 +653,7 @@ static int blurayOpen(vlc_object_t *object)
}
/* */
- p_demux->p_sys = p_sys = vlc_calloc(obj, 1, sizeof(*p_sys));
+ p_demux->p_sys = p_sys = vlc_calloc(object, 1, sizeof(*p_sys));
if (unlikely(!p_sys))
return VLC_ENOMEM;
More information about the vlc-commits
mailing list