Set initialized=1 when everything has actually been initialized

This commit is contained in:
Frank Denis 2013-04-26 17:02:53 -07:00
parent efb3d9919f
commit 076eb56e24

View File

@ -12,9 +12,10 @@ sodium_init(void)
if (initialized != 0) {
return 1;
}
initialized = 1;
if (crypto_onetimeauth_pick_best_implementation() == NULL) {
return -1;
}
initialized = 1;
return 0;
}