summaryrefslogtreecommitdiffstats
path: root/talloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'talloc.h')
-rw-r--r--talloc.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/talloc.h b/talloc.h
index 5431971655..8c6d405040 100644
--- a/talloc.h
+++ b/talloc.h
@@ -29,6 +29,14 @@
#include <stdio.h>
#include <stdarg.h>
+/* HACK: libsmbclient uses dynamically linked libtalloc.so which has
+ * identically named symbols. This name collision caused a crash under
+ * stream_smb when trying to play anything with smb://. This hack
+ * prevents the symbols declared here from being visible to outside
+ * shared libraries and fixes the crash.
+ */
+#pragma GCC visibility push(hidden)
+
/* this is only needed for compatibility with the old talloc */
typedef void TALLOC_CTX;
@@ -180,4 +188,6 @@ char *talloc_asprintf(const void *t, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3)
char *talloc_asprintf_append(char *s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
char *talloc_asprintf_append_buffer(char *s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
+// end of visibility hack from above
+#pragma GCC visibility pop
#endif