mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-13 11:34:10 +00:00
plugin: Stop plugin symbol name at first .
This is because the python plugin ends up named libgstpython.cpython-35m-x86_64-linux-gnu.so so we need to stop at the first dot. https://bugzilla.gnome.org/show_bug.cgi?id=782924
This commit is contained in:
parent
f6b42d1f56
commit
156ce96296
1 changed files with 1 additions and 1 deletions
|
@ -700,7 +700,7 @@ extract_symname (const char *filename)
|
|||
else if (g_str_has_prefix (bname, "lib"))
|
||||
prefix_len += 3;
|
||||
|
||||
dot = g_utf8_strrchr (bname, -1, '.');
|
||||
dot = g_utf8_strchr (bname, -1, '.');
|
||||
if (dot)
|
||||
len = dot - bname - prefix_len;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue