Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: 4.0.1-pre-1 on RH6.2
- X-seq: zsh-workers 13498
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx (Zsh hackers list)
- Subject: Re: 4.0.1-pre-1 on RH6.2
- Date: Sun, 18 Feb 2001 01:21:48 +0000
- In-reply-to: <20010217005107.93E34139BA@xxxxxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <20010217005107.93E34139BA@xxxxxxxxxxxxxxxxxxxxxxxx>
On Feb 17, 12:51am, Peter Stephenson wrote:
} Subject: Re: 4.0.1-pre-1 on RH6.2
}
} "Bart Schaefer" wrote:
} >
} > zftp.c: In function `zfgetline':
} > zftp.c:730: warning: variable `added' might be clobbered by `longjmp'
}
} These have always been there and I've never been able to understand what
} it's talking about with those particular variables.
Ah, I see. It's warning you which variables have been given register
storage allocation by the compiler, and which therefore won't be unwound
properly when longjmp() takes you back up the stack to the setjmp() spot.
As long as none of those are referenced in the `if (setjmp(...)) { ... }'
blocks (which appears to be true), everything should be OK.
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net
Messages sorted by:
Reverse Date,
Date,
Thread,
Author