mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
don't spill paths from registry until we fix the generic case
Original commit message from CVS: don't spill paths from registry until we fix the generic case
This commit is contained in:
parent
a967370df5
commit
90e77e5ad9
2 changed files with 11 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* tools/gst-register.c: do not spill paths when registries are not
|
||||||
|
writable, until we fix the "user running gst-register" case.
|
||||||
|
|
||||||
2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* *.c, *.h: commit of gst-indent run on core
|
* *.c, *.h: commit of gst-indent run on core
|
||||||
|
|
|
@ -133,8 +133,12 @@ main (int argc, char *argv[])
|
||||||
* FIXME: we should check if the paths that were loaded from this
|
* FIXME: we should check if the paths that were loaded from this
|
||||||
registry get removed from the path_list so we only try to
|
registry get removed from the path_list so we only try to
|
||||||
spill paths that could not be registered */
|
spill paths that could not be registered */
|
||||||
path_spill = g_list_concat (path_spill,
|
/* Until that is done, don't spill paths when registry is not writable
|
||||||
gst_registry_get_path_list (registry));
|
(e.g. case of user running gst-register and sysreg not writable) */
|
||||||
|
/*
|
||||||
|
path_spill = g_list_concat (path_spill,
|
||||||
|
gst_registry_get_path_list (registry));
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
dir_list = gst_registry_get_path_list (registry);
|
dir_list = gst_registry_get_path_list (registry);
|
||||||
|
|
Loading…
Reference in a new issue