diff options
-rw-r--r-- | linden/indra/libgcrypt/libgcrypt-1.2.2/src/sexp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/libgcrypt/libgcrypt-1.2.2/src/sexp.c b/linden/indra/libgcrypt/libgcrypt-1.2.2/src/sexp.c index 55ffc43..40c5b3f 100644 --- a/linden/indra/libgcrypt/libgcrypt-1.2.2/src/sexp.c +++ b/linden/indra/libgcrypt/libgcrypt-1.2.2/src/sexp.c | |||
@@ -212,7 +212,7 @@ gcry_sexp_create (gcry_sexp_t *retsexp, void *buffer, size_t length, | |||
212 | { | 212 | { |
213 | gcry_error_t errcode; | 213 | gcry_error_t errcode; |
214 | gcry_sexp_t se; | 214 | gcry_sexp_t se; |
215 | volatile va_list dummy_arg_ptr = NULL; | 215 | volatile va_list dummy_arg_ptr; |
216 | 216 | ||
217 | if (!retsexp) | 217 | if (!retsexp) |
218 | return gcry_error (GPG_ERR_INV_ARG); | 218 | return gcry_error (GPG_ERR_INV_ARG); |
@@ -1392,7 +1392,7 @@ gcry_sexp_build_array (gcry_sexp_t *retsexp, size_t *erroff, | |||
1392 | following flag, however we have to pass it but can't initialize | 1392 | following flag, however we have to pass it but can't initialize |
1393 | it as there is no portable way to do so. volatile is needed to | 1393 | it as there is no portable way to do so. volatile is needed to |
1394 | suppress the compiler warning */ | 1394 | suppress the compiler warning */ |
1395 | volatile va_list dummy_arg_ptr = NULL; | 1395 | volatile va_list dummy_arg_ptr; |
1396 | 1396 | ||
1397 | gcry_error_t rc; | 1397 | gcry_error_t rc; |
1398 | 1398 | ||
@@ -1410,7 +1410,7 @@ gcry_sexp_sscan (gcry_sexp_t *retsexp, size_t *erroff, | |||
1410 | following flag, however we have to pass it but can't initialize | 1410 | following flag, however we have to pass it but can't initialize |
1411 | it as there is no portable way to do so. volatile is needed to | 1411 | it as there is no portable way to do so. volatile is needed to |
1412 | suppress the compiler warning */ | 1412 | suppress the compiler warning */ |
1413 | volatile va_list dummy_arg_ptr = NULL; | 1413 | volatile va_list dummy_arg_ptr; |
1414 | 1414 | ||
1415 | return sexp_sscan (retsexp, erroff, buffer, length, 0, | 1415 | return sexp_sscan (retsexp, erroff, buffer, length, 0, |
1416 | dummy_arg_ptr, NULL); | 1416 | dummy_arg_ptr, NULL); |