--- lbbs/src/user_info_display.c 2025/10/23 15:45:41 1.13 +++ lbbs/src/user_info_display.c 2025/10/25 13:09:42 1.14 @@ -64,6 +64,12 @@ int user_info_display(USER_INFO *p_user_ int ret; int i; + if (p_user_info == NULL) + { + log_error("NULL pointer error\n"); + return -1; + } + article_cnt = get_user_article_cnt(p_user_info->uid); astro_name = get_astro_name(p_user_info->birthday);