Advertisement
Guest User

Untitled

a guest
Sep 5th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.84 KB | None | 0 0
  1. In file included from ./deps/include/mbedtls/ssl_ciphersuites.h:27:0,
  2.                  from ./deps/include/mbedtls/ssl.h:35,
  3.                  from src/networking/HTTPSRequest.h:15,
  4.                  from src/WebResource.cpp:9:
  5. ./deps/include/mbedtls/cipher.h: In function 'unsigned int mbedtls_cipher_get_block_size(const mbedtls_cipher_context_t*)':
  6. ./deps/include/mbedtls/cipher.h:342:17: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  7.      if( NULL == ctx || NULL == ctx->cipher_info )
  8.                  ^~~
  9. ./deps/include/mbedtls/cipher.h:342:37: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  10.      if( NULL == ctx || NULL == ctx->cipher_info )
  11.                                      ^~~~~~~~~~~
  12. ./deps/include/mbedtls/cipher.h: In function 'mbedtls_cipher_mode_t mbedtls_cipher_get_cipher_mode(const mbedtls_cipher_context_t*)':
  13. ./deps/include/mbedtls/cipher.h:359:17: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  14.      if( NULL == ctx || NULL == ctx->cipher_info )
  15.                  ^~~
  16. ./deps/include/mbedtls/cipher.h:359:37: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  17.      if( NULL == ctx || NULL == ctx->cipher_info )
  18.                                      ^~~~~~~~~~~
  19. ./deps/include/mbedtls/cipher.h: In function 'int mbedtls_cipher_get_iv_size(const mbedtls_cipher_context_t*)':
  20. ./deps/include/mbedtls/cipher.h:376:17: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  21.      if( NULL == ctx || NULL == ctx->cipher_info )
  22.                  ^~~
  23. ./deps/include/mbedtls/cipher.h:376:37: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  24.      if( NULL == ctx || NULL == ctx->cipher_info )
  25.                                      ^~~~~~~~~~~
  26. ./deps/include/mbedtls/cipher.h: In function 'mbedtls_cipher_type_t mbedtls_cipher_get_type(const mbedtls_cipher_context_t*)':
  27. ./deps/include/mbedtls/cipher.h:395:17: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  28.      if( NULL == ctx || NULL == ctx->cipher_info )
  29.                  ^~~
  30. ./deps/include/mbedtls/cipher.h:395:37: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  31.      if( NULL == ctx || NULL == ctx->cipher_info )
  32.                                      ^~~~~~~~~~~
  33. ./deps/include/mbedtls/cipher.h: In function 'const char* mbedtls_cipher_get_name(const mbedtls_cipher_context_t*)':
  34. ./deps/include/mbedtls/cipher.h:410:17: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  35.      if( NULL == ctx || NULL == ctx->cipher_info )
  36.                  ^~~
  37. ./deps/include/mbedtls/cipher.h:410:37: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  38.      if( NULL == ctx || NULL == ctx->cipher_info )
  39.                                      ^~~~~~~~~~~
  40. ./deps/include/mbedtls/cipher.h: In function 'int mbedtls_cipher_get_key_bitlen(const mbedtls_cipher_context_t*)':
  41. ./deps/include/mbedtls/cipher.h:431:17: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  42.      if( NULL == ctx || NULL == ctx->cipher_info )
  43.                  ^~~
  44. ./deps/include/mbedtls/cipher.h:431:37: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  45.      if( NULL == ctx || NULL == ctx->cipher_info )
  46.                                      ^~~~~~~~~~~
  47. ./deps/include/mbedtls/cipher.h: In function 'mbedtls_operation_t mbedtls_cipher_get_operation(const mbedtls_cipher_context_t*)':
  48. ./deps/include/mbedtls/cipher.h:448:17: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  49.      if( NULL == ctx || NULL == ctx->cipher_info )
  50.                  ^~~
  51. ./deps/include/mbedtls/cipher.h:448:37: error: zero as null pointer constant [-Werror=zero-as-null-pointer-constant]
  52.      if( NULL == ctx || NULL == ctx->cipher_info )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement