Fix segfault

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
Hiroki Hattori 2008-02-24 02:57:34 +09:00 committed by Lars Hjemli
parent b74cc91574
commit eacde43d71
1 changed files with 5 additions and 15 deletions

20
html.c
View File

@ -48,9 +48,7 @@ void html_txt(char *txt)
while(t && *t){
int c = *t;
if (c=='<' || c=='>' || c=='&') {
*t = '\0';
html(txt);
*t = c;
write(htmlfd, txt, t - txt);
if (c=='>')
html("&gt;");
else if (c=='<')
@ -71,9 +69,7 @@ void html_ntxt(int len, char *txt)
while(t && *t && len--){
int c = *t;
if (c=='<' || c=='>' || c=='&') {
*t = '\0';
html(txt);
*t = c;
write(htmlfd, txt, t - txt);
if (c=='>')
html("&gt;");
else if (c=='<')
@ -84,12 +80,8 @@ void html_ntxt(int len, char *txt)
}
t++;
}
if (t!=txt) {
char c = *t;
*t = '\0';
html(txt);
*t = c;
}
if (t!=txt)
write(htmlfd, txt, t - txt);
if (len<0)
html("...");
}
@ -100,9 +92,7 @@ void html_attr(char *txt)
while(t && *t){
int c = *t;
if (c=='<' || c=='>' || c=='\'') {
*t = '\0';
html(txt);
*t = c;
write(htmlfd, txt, t - txt);
if (c=='>')
html("&gt;");
else if (c=='<')