mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 06:48:05 +01:00
We do not mix variable declarations and code
svn:r11233
This commit is contained in:
parent
8c3d14cda5
commit
38cbd7263e
1 changed files with 2 additions and 2 deletions
|
@ -2207,12 +2207,12 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers,
|
|||
char *result;
|
||||
size_t len;
|
||||
struct mallinfo mi;
|
||||
memset(&mi, 0, sizeof(mi));
|
||||
smartlist_t *lines;
|
||||
char tmp[256];
|
||||
|
||||
memset(&mi, 0, sizeof(mi));
|
||||
mi = mallinfo();
|
||||
lines = smartlist_create();
|
||||
char tmp[256];
|
||||
|
||||
ADD_MALLINFO_LINE(arena)
|
||||
ADD_MALLINFO_LINE(ordblks)
|
||||
|
|
Loading…
Add table
Reference in a new issue