Michael Schröder
b264fccf9e
-> OBS-URL: https://build.opensuse.org/request/show/434537 OBS-URL: https://build.opensuse.org/package/show/shells/ksh?expand=0&rev=215
31 lines
965 B
Plaintext
31 lines
965 B
Plaintext
--- ./src/cmd/ksh93/sh/xec.c.orig 2014-11-21 14:11:39.619645318 +0000
|
|
+++ ./src/cmd/ksh93/sh/xec.c 2014-11-21 14:13:55.409987787 +0000
|
|
@@ -514,8 +514,8 @@ int sh_debug(Shell_t *shp, const char *t
|
|
Stk_t *stkp=shp->stk;
|
|
struct sh_scoped savst;
|
|
Namval_t *np = SH_COMMANDNOD;
|
|
- char *sav = stkptr(stkp,0);
|
|
int n=4, offset=stktell(stkp);
|
|
+ char *sav = stkfreeze(stkp,0);
|
|
const char *cp = "+=( ";
|
|
Sfio_t *iop = stkstd;
|
|
short level;
|
|
@@ -570,7 +570,7 @@ int sh_debug(Shell_t *shp, const char *t
|
|
nv_putval(SH_FUNNAMENOD,shp->st.funname,NV_NOFREE);
|
|
shp->st = savst;
|
|
if(sav != stkptr(stkp,0))
|
|
- stkset(stkp,sav,0);
|
|
+ stkset(stkp,sav,offset);
|
|
else
|
|
stkseek(stkp,offset);
|
|
return(n);
|
|
@@ -998,7 +998,7 @@ int sh_exec(register const Shnode_t *t,
|
|
int ntflag = 0;
|
|
#endif
|
|
int topfd = shp->topfd;
|
|
- char *sav=stkptr(stkp,0);
|
|
+ char *sav=stkfreeze(stkp,0);
|
|
char *cp=0, **com=0, *comn;
|
|
int argn;
|
|
int skipexitset = 0;
|