diff options
author | kevg <claprix@yandex.ru> | 2016-11-24 17:36:02 +0300 |
---|---|---|
committer | kevg <claprix@yandex.ru> | 2016-11-24 17:36:02 +0300 |
commit | 780db8e25239e5423cfab50c04c60b79ebc0224b (patch) | |
tree | 2c73735c76607093d466a143627efdd8b4fbc2ca /extra | |
parent | f4d6f26a4fae3f0cfcc6e77667c7697c4e024189 (diff) | |
download | mariadb-git-780db8e25239e5423cfab50c04c60b79ebc0224b.tar.gz |
fix build and some warnings
Diffstat (limited to 'extra')
-rw-r--r-- | extra/comp_err.c | 4 | ||||
-rw-r--r-- | extra/yassl/include/openssl/crypto.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/extra/comp_err.c b/extra/comp_err.c index a5530305317..cf6262f66e2 100644 --- a/extra/comp_err.c +++ b/extra/comp_err.c @@ -172,8 +172,8 @@ int main(int argc, char *argv[]) MY_INIT(argv[0]); { uint max_error, error_count; - struct errors *error_head; - struct languages *lang_head; + struct errors *error_head= NULL; + struct languages *lang_head= NULL; DBUG_ENTER("main"); charsets_dir= DEFAULT_CHARSET_DIR; diff --git a/extra/yassl/include/openssl/crypto.h b/extra/yassl/include/openssl/crypto.h index 103fcbb0e30..ac1e7ebc8eb 100644 --- a/extra/yassl/include/openssl/crypto.h +++ b/extra/yassl/include/openssl/crypto.h @@ -19,7 +19,7 @@ /* crypto.h for openSSL */ -#ifndef ysSSL_crypto_h__ +#ifndef yaSSL_crypto_h__ #define yaSSL_crypto_h__ #ifdef YASSL_PREFIX |