Submitted by Czar102
The initialization status is defined by the name and symbol. It is possible it set them back to an empty string, uninitializing the contract and letting the initialize(..) function be called again. This way, the owner may, for example, hide minting additional tokens. Or, after accidentally setting name and symbol to empty strings, anyone can take control over the contract and mint any number of tokens.
In general, it shouldnt be possible to initialize more than once.
Consider adding empty string checks in setName(...) and setSymbol(...) functions.
loki-sama (Amun) confirmed 
