mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
r11688@Kushana: nickm | 2006-12-23 22:08:36 -0500
Fix "r may be used uninitialized" warning from last patch. svn:r9177
This commit is contained in:
parent
bf1014692f
commit
d76b2a4ec0
1 changed files with 1 additions and 1 deletions
|
@ -542,7 +542,7 @@ accounting_record_bandwidth_usage(time_t now, or_state_t *state)
|
||||||
char time2[ISO_TIME_LEN+1];
|
char time2[ISO_TIME_LEN+1];
|
||||||
char *cp = buf;
|
char *cp = buf;
|
||||||
time_t tmp;
|
time_t tmp;
|
||||||
int r;
|
int r = 0;
|
||||||
uint64_t expected;
|
uint64_t expected;
|
||||||
static time_t last_recorded;
|
static time_t last_recorded;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue