diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-07-18 20:46:06 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-07-18 20:46:06 +0000 |
commit | cc1d3998d2edee5d69c07d5e0a750d7e47f5564d (patch) | |
tree | 1afa7014cf120c9b72223dba0a480cdbf4c5927f /tun.c | |
parent | Fixed format string issue in read_inline_file, (diff) | |
download | openvpn-cc1d3998d2edee5d69c07d5e0a750d7e47f5564d.tar.xz |
Reverted some recent buffer.[ch] changes, including r3058 (except for
likely() and unlikely() macro additions to syshead.h) and r3061.
I would like to give more thought to the bigger issue of fortifying
buffer.[ch] through the use of additional defensive programming techniques.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3081 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'tun.c')
-rw-r--r-- | tun.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -2033,12 +2033,7 @@ tun_finalize ( } if (buf) - { - if (ret < 0) - buf->len = 0; - else - buf->len = ret; - } + buf->len = ret; return ret; } |