From: Sanimir Agovic <sanimir.agovic@intel.com>
[deliverable/binutils-gdb.git] / gdb / gdbserver / thread-db.c
index f4afde31209166231e9d0ffff3389657869e6ce3..e8d3481738f2941a89fcb9a4e5f8ef7f96fce2e5 100644 (file)
@@ -494,7 +494,7 @@ thread_db_get_tls_address (struct thread_info *thread, CORE_ADDR offset,
   thread_db = proc->private->thread_db;
 
   /* If the thread layer is not (yet) initialized, fail.  */
-  if (!thread_db->all_symbols_looked_up)
+  if (thread_db == NULL || !thread_db->all_symbols_looked_up)
     return TD_ERR;
 
   if (thread_db->td_thr_tls_get_addr_p == NULL)
This page took 0.027749 seconds and 4 git commands to generate.