| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/archivers/libcabinet/files/ |
Upload File : |
--- cftypes.cpp.orig 1999-10-24 06:13:29 UTC
+++ cftypes.cpp
@@ -10,11 +10,20 @@
#ifndef __CFTYPES_CPP__
#define __CFTYPES_CPP__
-#include <values.h>
-#include <fstream.h>
+#include <inttypes.h>
+#include <limits.h>
+#include <fstream>
#include "zlib.h"
#include "cftypes.h"
+#ifndef MAXSHORT
+#define BITSPERBYTE 8
+#define BITS(type) (BITSPERBYTE * (int)sizeof(type))
+#define SHORTBITS BITS(int16_t)
+#define MINSHORT ((int16_t)(1 << (SHORTBITS - 1)))
+#define MAXSHORT ((int16_t)~MINSHORT)
+#endif
+
/******************************************************************************/
int convert_z_error_code(int code)
@@ -138,15 +147,20 @@ const char* get_cabinet_error_string(int
int io_read(istream& in, byte* buf, word len)
{
- while(len > MAXINT)
+ // replaced MAXINT with MAXSHORT, since len is of type
+ // word == unsigned short int
+ //
+ // TODO: please review this, since IMO the while-loop is
+ // never entered
+ while (len > MAXSHORT)
{
- if(in.read(buf, MAXINT).bad())
+ if(in.read((char*)buf, MAXSHORT).bad())
return (in.fail()) ? READ_ERROR : UNEXPECTED_EOF;
- len -= (word) MAXINT;
- buf += (word) MAXINT;
+ len -= (word) MAXSHORT;
+ buf += (word) MAXSHORT;
}
- return (in.read(buf, (int) len).bad())
+ return (in.read((char*)buf, (int) len).bad())
? (in.fail()) ? READ_ERROR : UNEXPECTED_EOF : OK;
}
@@ -154,14 +168,19 @@ int io_read(istream& in, byte* buf, word
int io_write(ostream& out, const byte* buf, word len)
{
- while(len > MAXINT)
+ // replaced MAXINT with MAXSHORT, since len is of type
+ // word == unsigned short int
+ //
+ // TODO: please review this, since IMO the while-loop is
+ // never entered
+ while(len > MAXSHORT)
{
- if(out.write(buf, MAXINT).fail()) return WRITE_ERROR;
- len -= (word) MAXINT;
- buf += (word) MAXINT;
+ if(out.write((char*)buf, MAXSHORT).fail()) return WRITE_ERROR;
+ len -= (word) MAXSHORT;
+ buf += (word) MAXSHORT;
}
- return (out.write(buf, (int) len).fail()) ? WRITE_ERROR : OK;
+ return (out.write((char*)buf, (int) len).fail()) ? WRITE_ERROR : OK;
}
//*****************************************************************************/