C4C: Reuse functions - don't forget the return parameter!
I recently wrote a reuse function that handled all kinds of scenarios and returned different values. However, I forgot to handle the negative case, i.e. where none of these scenarios apply and no (or an empty) value should be returned.
C4C does something funny in this case: It doesn't just return a "blank" value, it returns the value of the last successful "return".
