When a comment above a function says “returns -1 on error” and the code does the exact oposite (returns -1 anyway except if there was out of memory error, which may be #defined to -1 anyway) it’s a bit annoying when you first look at it.
Remember kids, comments in code are evil. They are wrong - or misleading at best. They only ever say what one person at some point in the past thought they beleived the code did. The definitive record is the code itself.
(there are possible exceptions to this rule… maybe… internals can be good to document - but arguably it should be *away* from the code so that you don’t start thinking the documentation is accurate and up to date - because it’s not).