summaryrefslogtreecommitdiff
path: root/Modules
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-09-03 07:49:53 +0000
committerGeorg Brandl <georg@python.org>2005-09-03 07:49:53 +0000
commit642094e8b2e0e0b6a165eee4bc0a99cf5bdc644b (patch)
treea8be4062ccdb00dbc830fe3f3058008b31383531 /Modules
parent08e4a2be49bb2edf03d7e4c74b99398db905df79 (diff)
downloadcpython-642094e8b2e0e0b6a165eee4bc0a99cf5bdc644b.tar.gz
bug [ 1274069 ] bz2module.c compiler warning
Diffstat (limited to 'Modules')
-rw-r--r--Modules/bz2module.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/Modules/bz2module.c b/Modules/bz2module.c
index 4547815c5c..af67ff13d0 100644
--- a/Modules/bz2module.c
+++ b/Modules/bz2module.c
@@ -110,8 +110,8 @@ typedef struct {
BZFILE *fp;
int mode;
- long pos;
- long size;
+ Py_off_t pos;
+ Py_off_t size;
#ifdef WITH_THREAD
PyThread_type_lock lock;
#endif
@@ -982,7 +982,7 @@ BZ2File_seek(BZ2FileObject *self, PyObject *args)
char *buffer = small_buffer;
size_t buffersize = SMALLCHUNK;
int bytesread = 0;
- int readsize;
+ size_t readsize;
int chunksize;
int bzerror;
int rewind = 0;
@@ -1089,10 +1089,13 @@ BZ2File_seek(BZ2FileObject *self, PyObject *args)
/* Before getting here, offset must be set to the number of bytes
* to walk forward. */
for (;;) {
- if ((size_t)offset-bytesread > buffersize)
+ if (offset-bytesread > buffersize)
readsize = buffersize;
else
- readsize = offset-bytesread;
+ /* offset might be wider that readsize, but the result
+ * of the subtraction is bound by buffersize (see the
+ * condition above). buffersize is 8192. */
+ readsize = (size_t)(offset-bytesread);
Py_BEGIN_ALLOW_THREADS
chunksize = Util_UnivNewlineRead(&bzerror, self->fp,
buffer, readsize, self);
@@ -1137,7 +1140,11 @@ BZ2File_tell(BZ2FileObject *self, PyObject *args)
goto cleanup;
}
+#if !defined(HAVE_LARGEFILE_SUPPORT)
ret = PyInt_FromLong(self->pos);
+#else
+ ret = PyLong_FromLongLong(self->pos);
+#endif
cleanup:
return ret;