diff options
author | Andrea Shepard <andrea@torproject.org> | 2012-10-10 00:48:36 -0700 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2012-10-10 00:48:36 -0700 |
commit | 5543c5b202b045bc5b7d8d4f127c54decd17e943 (patch) | |
tree | 586ae3885fcdfacc177b464982d487e791c7e421 /src/or/channel.c | |
parent | 217352c3624aa62384af57a2e7046e577671b915 (diff) | |
download | tor-5543c5b202b045bc5b7d8d4f127c54decd17e943.tar.gz tor-5543c5b202b045bc5b7d8d4f127c54decd17e943.zip |
Fix formatting in various places after 6465/6816 work
Diffstat (limited to 'src/or/channel.c')
-rw-r--r-- | src/or/channel.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/channel.c b/src/or/channel.c index 1ca5e1a333..570bb37b14 100644 --- a/src/or/channel.c +++ b/src/or/channel.c @@ -1518,7 +1518,7 @@ cell_queue_entry_dup(cell_queue_entry_t *q) rv = tor_malloc(sizeof(*rv)); memcpy(rv, q, sizeof(*rv)); - + return rv; } @@ -1529,7 +1529,8 @@ cell_queue_entry_dup(cell_queue_entry_t *q) */ static void -cell_queue_entry_free(cell_queue_entry_t *q, int handed_off) { +cell_queue_entry_free(cell_queue_entry_t *q, int handed_off) +{ if (!q) return; if (!handed_off) { |