Message89769
| Author | bkramer |
|---|---|
| Recipients | bkramer |
| Date | 2009-06-28.09:34:35 |
| SpamBayes Score | 0.0055905306 |
| Marked as misclassified | No |
| Message-id | <1246181677.92.0.360590014109.issue6355@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Objects/capsule.c contains the following code: if (!name1 || !name2) { /* they're only the same if they're both NULL. */ return name2 == name2; } The result of this comparison will always be true. The comment says it should be 'name1 == name2'. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2009-06-28 09:34:38 | bkramer | set | recipients: + bkramer |
| 2009-06-28 09:34:37 | bkramer | set | messageid: <1246181677.92.0.360590014109.issue6355@psf.upfronthosting.co.za> |
| 2009-06-28 09:34:36 | bkramer | link | issue6355 messages |
| 2009-06-28 09:34:35 | bkramer | create | |