Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[Cdt-launch-inbox] [Bug 167628] New: Wrong binary parser slows down the launch configuration dialog

https://bugs.eclipse.org/bugs/show_bug.cgi?id=167628 
Product/Component: CDT / cdt-launch

           Summary: Wrong binary parser slows down the launch configuration
                    dialog
           Product: CDT
           Version: 3.1.1
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P3
         Component: cdt-launch
        AssignedTo: cdt-launch-inbox@xxxxxxxxxxx
        ReportedBy: Mikhail.Khodjaiants@xxxxxxx


How to reproduce create a C/C++ project that generates an ELF binary and change
the project's binary parser to PE. Type in the name field of the launch
configuration dialog. The UI reaction is very slow.
The reason is that every modification in the name field triggers validation of
the all launch configuration tabs. As a result the getBinary method is called
for each binary parser. getBinary tries to parse the given file as a PE file,
fails, than tries to parse it as a PEBinaryArchive and fails again.



-- 
Configure bugzilla e-mail: https://bugs.eclipse.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Back to the top