gb_proxy: No need to copy optarg

Fixes: Coverity CID 1206578
This commit is contained in:
Holger Hans Peter Freyther 2015-01-26 10:26:36 +01:00
parent 496aee7cb8
commit abb3478533
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ static void handle_options(int argc, char **argv)
daemonize = 1;
break;
case 'c':
config_file = strdup(optarg);
config_file = optarg;
break;
case 'T':
log_set_print_timestamp(osmo_stderr_target, 1);