Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2011-12-23 21:08:14 +0000
committerEugene Tarassov2011-12-23 21:08:14 +0000
commitd05ce39c66fe87e5470ecbf7137721426ea21217 (patch)
treef945ab1c9acc99031ee229a2c4e7e7c4c6ae8dba /agent/tcf/services/symbols_win32.c
parent5f968a453efb7e6a08c979365e594ab6cb3ae249 (diff)
downloadorg.eclipse.tcf.agent-d05ce39c66fe87e5470ecbf7137721426ea21217.tar.gz
org.eclipse.tcf.agent-d05ce39c66fe87e5470ecbf7137721426ea21217.tar.xz
org.eclipse.tcf.agent-d05ce39c66fe87e5470ecbf7137721426ea21217.zip
TCF Agent: better caching of symbol values in symbols proxy.
Diffstat (limited to 'agent/tcf/services/symbols_win32.c')
-rw-r--r--agent/tcf/services/symbols_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/tcf/services/symbols_win32.c b/agent/tcf/services/symbols_win32.c
index d9c24952..3b2c8d7a 100644
--- a/agent/tcf/services/symbols_win32.c
+++ b/agent/tcf/services/symbols_win32.c
@@ -507,7 +507,7 @@ int get_symbol_size(const Symbol * sym, ContextAddress * size) {
return 0;
}
if (sym->module == 0) {
- errno = set_errno(ERR_OTHER, "Debug info not available");
+ set_errno(ERR_OTHER, "Debug info not available");
return -1;
}
if (sym->sym_class == SYM_CLASS_REFERENCE || sym->sym_class == SYM_CLASS_FUNCTION) {

Back to the top