10.请指出下面代码中的错误 char *encode_html(char *html_string) { int i, dst_index; if (!html_string) return NULL; char *dst_buf = (char *)malloc(4 * sizeof (char) * MAX_SIZE); if (MAX_SIZE <= strlen (html_string)) { LOGE ("user string too long, die evil hacker!"); return NULL; } dst_index = 0; for (i =0; i< strlen(html_string);i++) { if ('&'== html_string[i]) { dst_buf[dst_index++] = '&'; dst_buf[dst_index++] = 'a'; dst_buf[dst_index++] = 'm'; dst buf[dst_index++] = 'p'; dst buf[dst_index++] = 'j'; } else if ('<' ==html_string[i]){ /* < Wi11 encoded to &1t; */ } /* other special character */ else dst_buf[dst_index++] = html_string[i]; } return dst_buf; }
时间: 2023-12-03 13:46:08 浏览: 101
代码中存在以下错误:
1. 第8行的MAX_SIZE没有定义,应该在函数之前定义或者作为参数传入函数。
2. 第12行的for循环中,右括号后面多了一个英文字符“)”,应该改为“)”。
3. 第20行中的dst buf应该改为dst_buf。
4. 第22行中的注释“< Wi11 encoded to &1t;”没有被正确实现,应该在里面加上对应的编码。
修正后的代码如下:
```c
char *encode_html(char *html_string, int MAX_SIZE) {
int i, dst_index;
if (!html_string)
return NULL;
char *dst_buf = (char *)malloc(4 * sizeof(char) * MAX_SIZE);
if (MAX_SIZE <= strlen(html_string)) {
LOGE("user string too long, die evil hacker!");
return NULL;
}
dst_index = 0;
for (i = 0; i < strlen(html_string); i++) {
if ('&' == html_string[i]) {
dst_buf[dst_index++] = '&';
dst_buf[dst_index++] = 'a';
dst_buf[dst_index++] = 'm';
dst_buf[dst_index++] = 'p';
dst_buf[dst_index++] = 'j';
} else if ('<' == html_string[i]) {
dst_buf[dst_index++] = '&';
dst_buf[dst_index++] = 'l';
dst_buf[dst_index++] = 't';
dst_buf[dst_index++] = ';';
} else {
dst_buf[dst_index++] = html_string[i];
}
}
return dst_buf;
}
```
阅读全文