Merged revisions 73618 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r73618 | benjamin.peterson | 2009-06-28 11:23:55 -0500 (Sun, 28 Jun 2009) | 1 line

  fix useless comparison #6355
........
This commit is contained in:
Benjamin Peterson 2009-06-28 16:26:13 +00:00
parent 5111127f45
commit 2e5820b804
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ name_matches(const char *name1, const char *name2) {
/* if either is NULL, */
if (!name1 || !name2) {
/* they're only the same if they're both NULL. */
return name2 == name2;
return name1 == name2;
}
return !strcmp(name1, name2);
}