]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Properly read data from stream in pki --pkcs7
authorTobias Brunner <tobias@strongswan.org>
Thu, 24 Jan 2013 17:43:10 +0000 (18:43 +0100)
committerTobias Brunner <tobias@strongswan.org>
Thu, 24 Jan 2013 18:13:41 +0000 (19:13 +0100)
src/pki/commands/pkcs7.c

index 9f167d3768fe1b11d0a600e2edfe9fdc804b8055..790656c62bef76623f74123c881d56bef817f772 100644 (file)
@@ -31,13 +31,16 @@ static chunk_t read_from_stream(FILE *stream)
        while (TRUE)
        {
                len = fread(buf + total, 1, sizeof(buf) - total, stream);
-               if (len < 0)
+               if (len < (sizeof(buf) - total))
                {
-                       return chunk_empty;
-               }
-               if (len == 0)
-               {
-                       return chunk_clone(chunk_create(buf, total));
+                       if (ferror(stream))
+                       {
+                               return chunk_empty;
+                       }
+                       if (feof(stream))
+                       {
+                               return chunk_clone(chunk_create(buf, total + len));
+                       }
                }
                total += len;
                if (total == sizeof(buf))