- 论坛徽章:
- 0
|
在用CFREE4.0 (beta1)调试程序时,老是在下面一句处出错。很纳闷。其中的类型SegHD定义如下。另外nseg当前的数值为144。出错的提示为0x7c93b3fb in _size_of_stack_reserve__ ()(gdb) Cannot access memory 。用DEV C++也是过了,同样的结果。想问一下,有什么办法了解更多的出错信息。或者那位高手有过类是经历?先谢谢了!
- typedef struct
- {
- unsigned short start, end, id_offset;
- short id_delta;
- } SegHD;
复制代码
- typedef struct
- {
- TableEntry cmap, loca, glyf, head, maxp, name, cvt, prep, hhea;
- unsigned short nglyphs;
- unsigned short cmap4_nseg, cmap_format ; //Referenced by loadCMPA(), FontInfo()
- unsigned short max_pts, max_ctours,max_comp_pts,max_comp_ctours, max_depth; //Referenced by geTTFMaxP()
- short xmin, ymin, xmax, ymax; //Referenced by getBoundingBox()
- int long_format; //Referenced By initTruTypeFontFile(), (*TTFont).localOffset()
- char font_name[256];
- char font_type[5];
- char font_file[256];
- SubHD *sub_header;
- int sub_header_size;
- SegHD *seg_header;
- int seg_header_size;
- unsigned short sub_head_key[256];
- unsigned short *glyf_index_array;
- int glyf_index_array_size;
- } FontInfo *TTFont;
复制代码
- (*TTFont).seg_header = (SegHD*)calloc((nseg + 1),sizeof(SegHD));
复制代码
[ 本帖最后由 RobinHoo 于 2006-9-11 11:39 编辑 ] |
|