Don't leak keyword memory if it's avoidable #72
Labels
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: twc/ludus#72
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Don't leak keywords if it's at all possible. I believe this is mostly an io issue, with keywords coming in from the frontend. Search for all instances of
.leak()
, and mitigate these wherever it's possible.Actually, done. I just used consts in
io
. That's the only place I was leaking from.