commit c702322972c86c1c668c69a7260dc22066ea3567
parent 60c835dd032c1ac0e2bf43550c370c066783b7dd
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 4 Aug 2026 09:31:15 +0200
fix free-before-use
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/reducer/anastasis_api_redux_state.c b/src/reducer/anastasis_api_redux_state.c
@@ -151,11 +151,11 @@ ANASTASIS_REDUX_fail_ (struct ANASTASIS_ReduxState *rs,
enum TALER_ErrorCode ec,
const char *detail)
{
- ANASTASIS_REDUX_state_free_ (rs);
ANASTASIS_redux_fail_ (cb,
cb_cls,
ec,
detail);
+ ANASTASIS_REDUX_state_free_ (rs);
}