# New Ticket Created by Paul Cochrane # Please include the string: [perl #45991] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=45991 >
In src/objects.c:Parrot_add_attribute() there is the todo item: /* XXX leak! */ string_cstring_free(c_error); This comes directly after calling real_exception(), and therefore won't even be called (won't it?). So why are we freeing the variable here (other than to keep something like Coverity happy?