hostapd: Call os_program_{init,deinit}()
This commit is contained in:
parent
f45fb672cc
commit
80d77c31ff
1 changed files with 5 additions and 0 deletions
|
@ -400,6 +400,9 @@ int main(int argc, char *argv[])
|
||||||
int c, debug = 0, daemonize = 0;
|
int c, debug = 0, daemonize = 0;
|
||||||
char *pid_file = NULL;
|
char *pid_file = NULL;
|
||||||
|
|
||||||
|
if (os_program_init())
|
||||||
|
return -1;
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
c = getopt(argc, argv, "BdhKP:tv");
|
c = getopt(argc, argv, "BdhKP:tv");
|
||||||
if (c < 0)
|
if (c < 0)
|
||||||
|
@ -474,5 +477,7 @@ int main(int argc, char *argv[])
|
||||||
hostapd_global_deinit(pid_file);
|
hostapd_global_deinit(pid_file);
|
||||||
os_free(pid_file);
|
os_free(pid_file);
|
||||||
|
|
||||||
|
os_program_deinit();
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue