Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Philippe Normand
gst-plugins-bad
Commits
e80c044c
Commit
e80c044c
authored
Mar 23, 2018
by
Nirbheek Chauhan
🐜
Browse files
ladspa: Fix critical during plugin load on Windows
https://bugzilla.gnome.org/show_bug.cgi?id=794611
parent
ed84f179
Changes
1
Hide whitespace changes
Inline
Side-by-side
ext/ladspa/gstladspa.c
View file @
e80c044c
...
...
@@ -350,8 +350,12 @@ ladspa_plugin_path_search (GstPlugin * plugin)
#ifdef G_OS_WIN32
path
=
g_getenv
(
"APPDATA"
);
if
(
path
)
g_string_append
(
path
,
search_path
);
if
(
path
)
{
if
(
ladspa_path
->
len
)
g_string_append_printf
(
ladspa_path
,
G_SEARCHPATH_SEPARATOR_S
"%s"
,
path
);
else
g_string_append
(
ladspa_path
,
path
);
}
path
=
g_getenv
(
"COMMONPROGRAMFILES"
);
if
(
path
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment