代码中的编程/内存/逻辑问题

时间:2010-07-18 17:48:58

标签: c++ c memory-leaks memory-management

你能告诉我代码中有什么问题吗,我的应用程序随机崩溃了 我找不到任何可能的逻辑或内存错误,请帮助,因为这超出了我的范围。

#define __FN__ "CGD9_gd_ParseAddFieldsProC"
int CGD9_gd_ParseAddFieldsProC (CGD_gd_ParseAddFields_Iparam_t *i_param_st_p)
{

   t_gd9adfld_t *p_ext_fields_s = NULL;
   t_gd9sbdat_t *p_buff =
                  ( t_gd9sbdat_t * )( i_param_st_p->i_add_fields_st );

   Trace(__FN__);

   DEBUG_GD_1("\n\n Function %s - started. \n\n", __FN__);

   if(*(i_param_st_p->o_add_fields) == NULL) {
     ERR_Report_1(DGD_ERR_IN_FUNCTION,
     __FN__ "ERROR - program will crash, input extended struct\
has not been initialized!");

     ERR_Report_1(DGD_ERR_IN_FUNCTION, __FN__\
"Check that exit point CMI9_auxc_A_GUIDING_init_forProc \
is used in GD table!");

    fflush(NULL);
    return FAILURE;
   }

   p_ext_fields_s = *(i_param_st_p->o_add_fields);

   memset ( p_ext_fields_s, ' ', sizeof (t_gd9adfld_t));

/* Copy all extended fields from GD tables to buffer one by one*/

        memcpy(&p_ext_fields_s->rowid,
          &p_buff[i_param_st_p->output_index].rowid,
          sizeof(p_buff[i_param_st_p->output_index].rowid));

    memset(p_ext_fields_s->rowid,'0',18);


        memcpy(&p_ext_fields_s->l9_legacy_prod_type,
          &p_buff[i_param_st_p->output_index].l9_legacy_prod_type,
          sizeof(p_ext_fields_s->l9_legacy_prod_type));


   /* Free the memory allocated for extended fields */

   free(i_param_st_p -> i_add_fields_st);
   i_param_st_p -> i_add_fields_st = NULL;

   DEBUG_GD_1("\n\n Function %s - completed successuflly. \n\n", __FN__);

   return SUCCESS;
}

3 个答案:

答案 0 :(得分:3)

在黑暗中拍摄:

你正在使用

memcpy(&p_ext_fields_s->rowid ...

memset(p_ext_fields_s->rowid,...

所以也许它应该是

memset(&p_ext_fields_s->rowid

代替?但如果这确实是问题,我希望它不会随机崩溃,但每次都会崩溃......

答案 1 :(得分:0)

为什么在第一种情况下使用 sizeof(),然后在第二种情况下使用恒定尺寸( 18 )?

memcpy(&p_ext_fields_s->rowid,
  &p_buff[i_param_st_p->output_index].rowid,
  sizeof(p_buff[i_param_st_p->output_index].rowid));

memset(p_ext_fields_s->rowid,'0',18);

PS 我建议用内存检查工具运行你的代码(因为我怀疑内存损坏)。

答案 2 :(得分:0)

代码崩溃以释放内存:

free(i_param_st_p -> i_add_fields_st); 

有什么问题:< ?