Bug fix for fast module location

This commit is contained in:
Jack Jansen 1997-10-08 15:32:46 +00:00
parent f774c41dfe
commit 213649023c

View file

@ -895,7 +895,7 @@ PyMac_FindModuleExtension(char *buf, int *lenp, char *module)
#if 0
strcpy(buf+*lenp+modnamelen, fdp->suffix);
#else
strcpy(buf+*lenp+modnamelen, fdp->suffix);
strcpy(buf+*lenp, fdp->suffix);
#endif
*lenp = strlen(buf);
return fdp;