- 20 Feb, 2009 8 commits
-
-
Felix Paul Kühne authored
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Joseph Tulou authored
Signed-off-by: Jean-Baptiste Kempf <jb@sasmira.jbkempf.com>
-
Felix Paul Kühne authored
-
Geoffroy Couprie authored
fixed by Pierre Ynard
-
Joseph Tulou authored
Signed-off-by: Jean-Baptiste Kempf <jb@sasmira.jbkempf.com>
-
Jean-Baptiste Kempf authored
-
- 19 Feb, 2009 24 commits
-
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Rémi Denis-Courmont authored
This reverts commit 866faad6. module_t **list, *module; list = module_list_get (NULL); if (!list) return NULL; for (size_t i = 0; (module = list[i]) != NULL; i++) ^^^^^^^^ I think this needs no more comment.
-
Rémi Denis-Courmont authored
-
Jean-Paul Saman authored
If module_find() does not find the requested module it would return an uninitialized pointer. This made VLC webplugin crash under MacOS X. Thus make sure to initialize it properly to NULL.
-
Jean-Paul Saman authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
(I would not be surprised if the bug were in the VLC plugin though)
-
Jean-Baptiste Kempf authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
and fixed a small typo
-
Felix Paul Kühne authored
macosx: re-arranged the audio and video menus to look similar to the Qt4 interface. Additionally, implemented an 'Open File...' item in the subtitles-submenu
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
macosx: implemented saving of the debug log as RTFD and slightly extended the catcher for outdated OS X versions.
-
Felix Paul Kühne authored
-
Geoffroy Couprie authored
Fixes #2517
-
Geoffroy Couprie authored
-
Geoffroy Couprie authored
-
Geoffroy Couprie authored
-
Geoffroy Couprie authored
-
Geoffroy Couprie authored
-
Geoffroy Couprie authored
-
- 18 Feb, 2009 5 commits
-
-
Laurent Aimar authored
-
Laurent Aimar authored
-
Laurent Aimar authored
It is related to #1122 and #1848.
-
Laurent Aimar authored
-
Geoffroy Couprie authored
Fixed by Pierre Ynard
-
- 17 Feb, 2009 3 commits
-
-
Laurent Aimar authored
-
Rémi Denis-Courmont authored
This is a bit ugly but it fixes two race conditions: - loading plugins while another thread is initializing, - using the bank when the first thread has not completed loading plugins. Unfortunately, there is still a small race when module_need() calls AllocatePlugin(). It really should not -need to- do that, but the fix would be quite invasive. We would basically need to store plugin callbacks by names rather than function pointers. Then the module descriptors would be fully serializable, so we would not need to re-describe plugins when loading their shared object. That would also fix the last known corruption bug in the plugins cache.
-
Rémi Denis-Courmont authored
-