K
Keith Thompson
Andrew Poelstra said:We had a discussion a while back about whether this is a conforming
implementation:
char *gets(char *buffer) {
fputs("Hey jerk!!", stderr);
exit(0);
return NULL;
}
Since in the general case, there is no way to guarantee buffer will
not be run, causing undefined behavior, and printing "Hey jerk" and
dying is well within the bounds of undefined behavior.
I don't remember where the group ended up on it, but that looks
perfectly okay to me.
It isn't.
The behavior of gets() is well defined as long as you don't feed it a
line too long to be stored in the buffer. A conforming implementation
may not take advantage of the permissions granted by undefined
behavior unless the undefined behavior actually occurs.
I have considered it, yes, but it doesn't seem like the OP
is at an appropriate skill level to be learning such things.
What is the "appropriate skill level" for learning that gets() is
dangerous? Or did I misunderstand you?