Changeset 161


Ignore:
Timestamp:
May 30, 2016, 10:53:00 PM (9 years ago)
Author:
Gregg Young
Message:

Fix to a buffer overflow issue from eFTE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/o_messages.cpp

    r26 r161  
    592592                                                              line - 1);
    593593                }
    594             }
     594            }
     595            // Both these SetMsg() calls were Msg(S_INFO, ...) calls,
     596            // but that causes buffer overflows for very long
     597            // arguments.
    595598            if (ErrList[err]->msg != 0)
    596                 V->Msg(S_INFO, "%s", ErrList[err]->msg);
     599                V->SetMsg(ErrList[err]->msg);
    597600            else
    598                 V->Msg(S_INFO, "%s", ErrList[err]->text);
     601                V->SetMsg(ErrList[err]->text);
    599602        }
    600603    }
Note: See TracChangeset for help on using the changeset viewer.