Does register_forward register the forward multiple times if it's already registered under the same function?
HTML Code:
gForwardHandle = register_forward(FM_EmitSound , "EmitSound");
If I call that line twice is the same old handle returned by the forward or would this cause memory leaks assuming I call that line multiple times before unregistering the forward?