Fix Logging Uninitialized name_

Change-Id: Ie02ac6ce8e61c180943c7a405db41e74cb77adf4
diff --git a/aos/linux_code/ipc_lib/queue.cc b/aos/linux_code/ipc_lib/queue.cc
index 2738e85..b874b08 100644
--- a/aos/linux_code/ipc_lib/queue.cc
+++ b/aos/linux_code/ipc_lib/queue.cc
@@ -195,7 +195,7 @@
 
   if (queue_length < 1) {
     LOG(FATAL, "queue length %d of %s needs to be at least 1\n", queue_length,
-        name_);
+        name);
   }
 
   const size_t name_size = strlen(name) + 1;