Misplaced break statement in callback.

This commit is contained in:
Brian Taylor 2025-08-05 14:08:04 +02:00 committed by Holger Vogt
parent e5e46c8782
commit b44421749a
1 changed files with 1 additions and 1 deletions

View File

@ -70,11 +70,11 @@ cm_seegen_callback(ARGS, Mif_Callback_Reason_t reason)
if (pulse_number)
free(pulse_number);
STATIC_VAR (pulse_number) = NULL;
break;
double *last_ctrl = STATIC_VAR (last_ctrl);
if (last_ctrl)
free(last_ctrl);
STATIC_VAR (last_ctrl) = NULL;
break;
}
}
}