mirror of
https://github.com/curl/curl.git
synced 2026-08-25 10:53:37 +03:00
C ensures that static variables are initialized to 0
This commit is contained in:
parent
3acda85c2b
commit
99befd3a15
2 changed files with 3 additions and 3 deletions
|
|
@ -1539,7 +1539,7 @@ void curl_formfree(struct curl_httppost *form)
|
|||
char *Curl_FormBoundary(void)
|
||||
{
|
||||
char *retstring;
|
||||
static int randomizer=0; /* this is just so that two boundaries within
|
||||
static int randomizer; /* this is just so that two boundaries within
|
||||
the same form won't be identical */
|
||||
size_t i;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue