You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Some plugins uses C code and C doesn't have concept of "namespace". Some functions is exported without any prefix, which may lead to collisions.
Expected behavior
We need to add some prefix, maybe the name of the library in Go. So, instead of fileRead it must be explorer_fileRead, or even gio_explorer_fileRead, and similar.
The text was updated successfully, but these errors were encountered:
Affected plugin
Most all of them
Describe the bug
Some plugins uses C code and C doesn't have concept of "namespace". Some functions is exported without any prefix, which may lead to collisions.
Expected behavior
We need to add some prefix, maybe the name of the library in Go. So, instead of
fileRead
it must beexplorer_fileRead
, or evengio_explorer_fileRead
, and similar.The text was updated successfully, but these errors were encountered: