提交 45b00c44 编写于 作者: M Marc-André Lureau

contrib: remove unnecessary strdup()

getopt() optarg points to argv memory, no need to dup those values,
fixes small leaks detected by clang-analyzer.
Signed-off-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: NVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
上级 5105b1d8
......@@ -53,7 +53,7 @@ ivshmem_client_parse_args(IvshmemClientArgs *args, int argc, char *argv[])
break;
case 'S': /* unix_sock_path */
args->unix_sock_path = strdup(optarg);
args->unix_sock_path = optarg;
break;
default:
......
......@@ -92,15 +92,15 @@ ivshmem_server_parse_args(IvshmemServerArgs *args, int argc, char *argv[])
break;
case 'p': /* pid_file */
args->pid_file = strdup(optarg);
args->pid_file = optarg;
break;
case 'S': /* unix_socket_path */
args->unix_socket_path = strdup(optarg);
args->unix_socket_path = optarg;
break;
case 'm': /* shm_path */
args->shm_path = strdup(optarg);
args->shm_path = optarg;
break;
case 'l': /* shm_size */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册