summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/capsule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/capsule.c b/Objects/capsule.c
index 5304ce1..3d2d626 100644
--- a/Objects/capsule.c
+++ b/Objects/capsule.c
@@ -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);
}