bugLibreDWG - Bugs: bug #32264, segfault in R13-R14 with --enable...

 
 

bug #32264: segfault in R13-R14 with --enable trace.

Submitter:  Rallaz <rallaz>
Submitted:  Thu 27 Jan 2011 04:45:29 PM UTC
   
 
Category:  None Severity:  3 - Normal
Item Group:  None Status:  Fixed
Privacy:  Public Assigned to:  reini_urban
Open/Closed:  Closed
* Mandatory Fields

Add a New Comment Rich Markup
   

Wed 25 Apr 2018 01:34:07 PM UTC, comment #1: 

Thanks.
This logic bug was fixed some time ago.

Reini Urban <reini_urban>
Group administrator
Thu 27 Jan 2011 04:45:29 PM UTC, original submission:  

If you compile LibreDWG with --enable trace and run:
export LIBREDWG_TRACE=9; ./test fileR14.dwg it crashes.

In file common_entity_handle_data.spec #line 17,18:

      if (!FIELD_VALUE(isbylayerlt))
        FIELD_HANDLE(ltype, 5);

is expanded as (pseudocode):
      if ( !isbylayerlt)
            HANDLE_ltype();
      printf(stderr, "linetype %s", HANDLE_ltype);
#crashes because allways print HANDLE_ltype

If change the code to:
      if (!FIELD_VALUE(isbylayerlt))
        {
          FIELD_HANDLE(ltype, 5);
        }

is expanded as (pseudocode):
      if ( !isbylayerlt)
        {
            HANDLE_ltype();
            printf(stderr, "linetype %s", HANDLE_ltype);
        {
#only print if linetype is decoded



Rallaz <rallaz>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by reini_urban (Posted a comment)
  • -email is unavailable- added by rallaz (Submitted the item)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

    Only logged-in users can vote.

     

    Follow 3 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2018-04-25 reini_urban StatusNone Fixed
        Assigned toNone reini_urban
        Open/ClosedOpen Closed

    Back to the top

    Powered by Savane 3.13-758e.
    Corresponding source code