curl: proto2num: make sure obuf is inited

Detected by Coverity. CID 1507052.

Closes #9096
This commit is contained in:
Daniel Stenberg 2022-07-04 12:50:15 +02:00
parent c5f3c47cbb
commit 127d04aadf
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -291,7 +291,7 @@ ParameterError proto2num(struct OperationConfig *config,
char *buffer;
const char *sep = ",";
char *token;
char obuf[256];
char obuf[256] = "";
size_t olen = sizeof(obuf);
char *optr;
struct sprotos const *pp;