Fix a small memory leak in nt_service_install() in ntmain.c
A string buffer command
is allocated on L559, but it's not freed if service_fns.LookupAccountNameA_fn
returns FALSE. The patch I attached adds tor_free(command);
in this else if
branch.
Trac:
Username: xiaoyinl