GNOME Bugzilla – Bug 587973
use G_DIR_SEPARATOR_S instead of "/'"
Last modified: 2009-07-08 13:11:50 UTC
gstregistry.c builds the path of the module to load using "/", which is wrong on that other OS that uses \. Actually it worked, but the resulting string is still inconsistent and I'm not sure if it might cause problems on older version of that other OS.
Created attachment 137968 [details] [review] trivial patch, but here you have it
Better would probably be a call to g_build_filename() which handles this automatically
Sure, that would be fine too.
commit 45876e11cbe1136efdb8b6355ba0efc0e014d4c5 Author: Sebastian Dröge <sebastian.droege@collabora.co.uk> Date: Wed Jul 8 15:10:26 2009 +0200 registry: Use g_build_filename() instead of g_strjoin() with / This makes sure that the generated filenames use the platform specific directory separator instead of /. Fixes bug #587973.