| # | Line 55 | Line 55 | char *get_user_stats(){ | |
|---|---|---|
| 55 | #endif | |
| 56 | if (user_list==NULL) user_list=strdup(""); | |
| 57 | xml_user_data=strf("<users><list>%s</list><count>%d</count></users>",user_list,nousers); | |
| 58 | < | if (user_list==NULL) free(user_list); |
| 58 | > | if (user_list!=NULL) free(user_list); |
| 59 | return xml_user_data; | |
| 60 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |