mirror of
https://github.com/curl/curl.git
synced 2026-05-02 13:07:51 +03:00
bearssl: fix compiler warnings
"variables may be uninitialized when used" Fixes #13290 Closes #13297
This commit is contained in:
parent
995b42eb33
commit
59bfc53849
1 changed files with 2 additions and 2 deletions
|
|
@ -120,9 +120,9 @@ static CURLcode load_cafile(struct cafile_source *source,
|
|||
br_x509_pkey *pkey;
|
||||
FILE *fp = 0;
|
||||
unsigned char buf[BUFSIZ];
|
||||
const unsigned char *p;
|
||||
const unsigned char *p = NULL;
|
||||
const char *name;
|
||||
size_t n, i, pushed;
|
||||
size_t n = 0, i, pushed;
|
||||
|
||||
DEBUGASSERT(source->type == CAFILE_SOURCE_PATH
|
||||
|| source->type == CAFILE_SOURCE_BLOB);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue