summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-07-17 04:25:50 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-07-17 04:25:50 +0000
commit24f8f368ebee5b7724f4b046a1f28066ffd9223f (patch)
tree0bc46d906dbc72d817c38144debc1addb7444ff6
parente2e10f8d7a4d9477a8e35d10df5f54885fe3c092 (diff)
downloadopenvpn-24f8f368ebee5b7724f4b046a1f28066ffd9223f.tar.gz
openvpn-24f8f368ebee5b7724f4b046a1f28066ffd9223f.tar.xz
openvpn-24f8f368ebee5b7724f4b046a1f28066ffd9223f.zip
Fixed issue in read_key_file, where the return value of
read() wasn't being checked for errors. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3063 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r--crypto.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto.c b/crypto.c
index ebb7981..9868528 100644
--- a/crypto.c
+++ b/crypto.c
@@ -1052,13 +1052,15 @@ read_key_file (struct key2 *key2, const char *file, const unsigned int flags)
if (fd == -1)
msg (M_ERR, "Cannot open file key file '%s'", file);
size = read (fd, in.data, in.capacity);
+ if (size < 0)
+ msg (M_FATAL, "Read error on key file ('%s')", file);
if (size == in.capacity)
msg (M_FATAL, "Key file ('%s') can be a maximum of %d bytes", file, (int)in.capacity);
close (fd);
}
cp = (unsigned char *)in.data;
- while (size)
+ while (size > 0)
{
const unsigned char c = *cp;