1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-14 20:23:54 +03:00

move to SAFE_FREE()

This commit is contained in:
Simo Sorce
-
parent 09bf442549
commit 549fe42bd4
5 changed files with 13 additions and 32 deletions

View File

@@ -52,10 +52,10 @@ static void cli_use_free(struct cli_use *cli)
cli_ulogoff(cli->cli);
cli_shutdown(cli->cli);
}
free(cli->cli);
SAFE_FREE(cli->cli);
}
free(cli);
SAFE_FREE(cli);
}
/****************************************************************************