summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadDl.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-08-11 21:24:22 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-08-11 21:24:22 (GMT)
commit944fd5bdcf2e247575a9dd55704b37fbc2a1e9ac (patch)
tree27fde8f62082347078d925d76441498acc190a4a /unix/tclLoadDl.c
parent9dee089fa2567d307056363c20eb69c53b4e1655 (diff)
parent88b202715dfbdfc05b7ce33d7f176595620496be (diff)
downloadtcl-944fd5bdcf2e247575a9dd55704b37fbc2a1e9ac.zip
tcl-944fd5bdcf2e247575a9dd55704b37fbc2a1e9ac.tar.gz
tcl-944fd5bdcf2e247575a9dd55704b37fbc2a1e9ac.tar.bz2
merge trunk
Diffstat (limited to 'unix/tclLoadDl.c')
-rw-r--r--unix/tclLoadDl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c
index d86e7fd..f8fe6d3 100644
--- a/unix/tclLoadDl.c
+++ b/unix/tclLoadDl.c
@@ -112,8 +112,9 @@ TclpDlopen(
const char *errorStr = dlerror();
- Tcl_AppendResult(interp, "couldn't load file \"",
- Tcl_GetString(pathPtr), "\": ", errorStr, NULL);
+ Tcl_SetObjResult(interp, Tcl_ObjPrintf(
+ "couldn't load file \"%s\": %s",
+ Tcl_GetString(pathPtr), errorStr));
return TCL_ERROR;
}
newHandle = ckalloc(sizeof(*newHandle));
@@ -175,9 +176,8 @@ FindSymbol(
}
Tcl_DStringFree(&ds);
if (proc == NULL && interp != NULL) {
- Tcl_ResetResult(interp);
- Tcl_AppendResult(interp, "cannot find symbol \"", symbol, "\": ",
- dlerror(), NULL);
+ Tcl_SetObjResult(interp, Tcl_ObjPrintf(
+ "cannot find symbol \"%s\": %s", symbol, dlerror()));
Tcl_SetErrorCode(interp, "TCL", "LOOKUP", "LOAD_SYMBOL", symbol,
NULL);
}