Version: 1.5.16.0
Frequency: Consistently
Severity: Low
Bug description:
Flow API UnregisterAll doesn’t seem to unregister correctly
Repro steps:
auto result = fsFlowRegister(fsFlowWasmCallback, NULL);
result = fsFlowUnregisterAll();
result = fsFlowRegister(fsFlowWasmCallback, NULL);
last result is false
auto result = fsFlowRegister(fsFlowWasmCallback, NULL);
result = fsFlowUnregister(fsFlowWasmCallback);
result = fsFlowRegister(fsFlowWasmCallback, NULL);
last result is true
so it seems that fsFlowUnregisterAll doesn’t unregister correctly, while fsFlowUnregister of the specific callback it works