mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Bug fix for fast module location
This commit is contained in:
parent
f774c41dfe
commit
213649023c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue