Subject:
|
Re: Not at all a pact with the devil...
|
Newsgroups:
|
lugnet.off-topic.debate
|
Date:
|
Mon, 29 Jan 2001 20:09:50 GMT
|
Viewed:
|
431 times
|
| |
| |
In lugnet.off-topic.debate, Kevin Loch writes:
Of course that should be:
fixURL(char *buf) {
int urlsize;
urlsize=strlen(buf);
if ((buf[urlsize]-1] != '/') && (urlsize < BUFSIZE-1)) {
buf[urlsize]='/';
buf[urlsize+1]=0;
}
>
> fixURL(char *buf) {
>
> urlsize=strlen(buf);
> if ((buf[urlsize]-1] != '/') && (urlsize < BUFSIZE-1)) {
> buf[urlsize]='/';
> buf[urlsize+1]=0;
> }
>
|
|
Message has 1 Reply: | | Re: Not at all a pact with the devil...
|
| (...) Might wanna throw in a comment at the top stating that behavior is undefined (and may even result in a segmentation fault) if fixURL(buf) is called when *buf == "\0". As written above, code assumes that strlen(buf) >= 1. --Todd (24 years ago, 29-Jan-01, to lugnet.off-topic.debate)
|
Message is in Reply To:
| | Re: Not at all a pact with the devil...
|
| I think we've been through this before. The reason that /foo/bar and /foo/bar/ are almost always synonymous is because most content (even dynamic) is filesystem based. That means you can have either the file "bar" or directory "bar" in directory (...) (24 years ago, 29-Jan-01, to lugnet.off-topic.debate)
|
45 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
This Message and its Replies on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|