diff options
author | hrxi <hrrrxi@gmail.com> | 2023-06-20 20:42:11 +0200 |
---|---|---|
committer | fiaxh <fiaxh@users.noreply.github.com> | 2023-10-06 15:25:12 +0200 |
commit | dd0038f5e2916b21f58d83dabe9675994635e41f (patch) | |
tree | 2201bc6130703f93767b07808d9f01420e3e70f4 /plugins/gpgme-vala/src | |
parent | c2efb214afa9f712c7ac112899c7d9b730e10de0 (diff) | |
download | dino-dd0038f5e2916b21f58d83dabe9675994635e41f.tar.gz dino-dd0038f5e2916b21f58d83dabe9675994635e41f.zip |
Fix every inclusion of `gpgme_fix.h` getting their own mutex
Diffstat (limited to 'plugins/gpgme-vala/src')
-rw-r--r-- | plugins/gpgme-vala/src/gpgme_fix.c | 4 | ||||
-rw-r--r-- | plugins/gpgme-vala/src/gpgme_fix.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/gpgme-vala/src/gpgme_fix.c b/plugins/gpgme-vala/src/gpgme_fix.c index 2bc139e9..bf457a6c 100644 --- a/plugins/gpgme-vala/src/gpgme_fix.c +++ b/plugins/gpgme-vala/src/gpgme_fix.c @@ -1,6 +1,6 @@ #include <gpgme_fix.h> -static GRecMutex gpgme_global_mutex = {0}; +GRecMutex gpgme_global_mutex = {0}; gpgme_key_t gpgme_key_ref_vapi (gpgme_key_t key) { gpgme_key_ref(key); @@ -9,4 +9,4 @@ gpgme_key_t gpgme_key_ref_vapi (gpgme_key_t key) { gpgme_key_t gpgme_key_unref_vapi (gpgme_key_t key) { gpgme_key_unref(key); return key; -}
\ No newline at end of file +} diff --git a/plugins/gpgme-vala/src/gpgme_fix.h b/plugins/gpgme-vala/src/gpgme_fix.h index 3daa7db0..714614fc 100644 --- a/plugins/gpgme-vala/src/gpgme_fix.h +++ b/plugins/gpgme-vala/src/gpgme_fix.h @@ -4,9 +4,9 @@ #include <glib.h> #include <gpgme.h> -static GRecMutex gpgme_global_mutex; +extern GRecMutex gpgme_global_mutex; gpgme_key_t gpgme_key_ref_vapi (gpgme_key_t key); gpgme_key_t gpgme_key_unref_vapi (gpgme_key_t key); -#endif
\ No newline at end of file +#endif |