Merge pull request #1553 from cgohlke/patch-2

Fix crash in ImageTk.PhotoImage on win-amd64
This commit is contained in:
wiredfool 2015-12-07 12:56:38 +00:00
commit f32a185f06

View File

@ -60,7 +60,11 @@ ImagingFind(const char* name)
Py_ssize_t id;
/* FIXME: use CObject instead? */
#if defined(_MSC_VER) && defined(_WIN64)
id = _atoi64(name);
#else
id = atol(name);
#endif
if (!id)
return NULL;