mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 04:38:55 +00:00
Merge branch 'wip/dueno/volatile' into 'master'
Drop "volatile" for g_once_init_enter locations See merge request GNOME/libsecret!77
This commit is contained in:
commit
fbad80754a
@ -64,7 +64,7 @@ GCRY_THREAD_OPTION_PTHREAD_IMPL;
|
||||
void
|
||||
egg_libgcrypt_initialize (void)
|
||||
{
|
||||
static volatile gsize gcrypt_initialized = 0;
|
||||
static size_t gcrypt_initialized = 0;
|
||||
unsigned seed;
|
||||
|
||||
if (g_once_init_enter (&gcrypt_initialized)) {
|
||||
|
@ -89,7 +89,7 @@ _secret_list_get_type (void)
|
||||
GQuark
|
||||
secret_error_get_quark (void)
|
||||
{
|
||||
static volatile gsize quark = 0;
|
||||
static gsize quark = 0;
|
||||
|
||||
static const GDBusErrorEntry entries[] = {
|
||||
{ SECRET_ERROR_IS_LOCKED, "org.freedesktop.Secret.Error.IsLocked", },
|
||||
|
Loading…
Reference in New Issue
Block a user