Commit 82160e6f by Serge Hallyn

lxc_user_nic: initialize cnic to NULL to please compiler

parent 552a7d05
...@@ -906,7 +906,7 @@ int main(int argc, char *argv[]) ...@@ -906,7 +906,7 @@ int main(int argc, char *argv[])
bool gotone = false; bool gotone = false;
char *me; char *me;
char *nicname = alloca(40); char *nicname = alloca(40);
char *cnic; // created nic name in container is returned here. char *cnic = NULL; // created nic name in container is returned here.
char *vethname; char *vethname;
int pid; int pid;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment