diff options
author | Guido van Rossum <guido@python.org> | 2000-06-28 22:07:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-06-28 22:07:35 (GMT) |
commit | 582acece2e0db447904b3f8f8f1d2acf36834158 (patch) | |
tree | 80805422d52a32da77e5e93425c34ec48d76a9c6 /Python/dynload_win.c | |
parent | 6f2a5efec98c831bd529dfb341c2f83ff0914418 (diff) | |
download | cpython-582acece2e0db447904b3f8f8f1d2acf36834158.zip cpython-582acece2e0db447904b3f8f8f1d2acf36834158.tar.gz cpython-582acece2e0db447904b3f8f8f1d2acf36834158.tar.bz2 |
Trent Mick's Win64 changes: size_t vs. int or long; also some overflow
tests.
Diffstat (limited to 'Python/dynload_win.c')
-rw-r--r-- | Python/dynload_win.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_win.c b/Python/dynload_win.c index 08a2a89..7506c41 100644 --- a/Python/dynload_win.c +++ b/Python/dynload_win.c @@ -104,7 +104,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, "DLL load failed with error code %d", errorCode); } else { - int len; + size_t len; /* For some reason a \r\n is appended to the text */ if (theLength >= 2 && |