Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 296700 Details for
Bug 430500
split .mdb off into -debuginfo
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Support looking in /usr/lib/debug for .mdb files
mono-debugger-usrlibdebug.patch (text/plain), 1005 bytes, created by
Jeremy Katz
on 2008-03-04 04:29:25 UTC
(
hide
)
Description:
Support looking in /usr/lib/debug for .mdb files
Filename:
MIME Type:
Creator:
Jeremy Katz
Created:
2008-03-04 04:29:25 UTC
Size:
1005 bytes
patch
obsolete
>diff -up mono-debugger-0.60/languages/mono/MonoSymbolFile.cs.usrlibdebug mono-debugger-0.60/languages/mono/MonoSymbolFile.cs >--- mono-debugger-0.60/languages/mono/MonoSymbolFile.cs.usrlibdebug 2008-03-03 23:13:07.000000000 -0500 >+++ mono-debugger-0.60/languages/mono/MonoSymbolFile.cs 2008-03-03 23:25:58.000000000 -0500 >@@ -272,12 +272,17 @@ namespace Mono.Debugger.Languages.Mono > > Report.Debug (DebugFlags.JitSymtab, "SYMBOL TABLE READER: {0}", ImageFile); > >- string mdb_file = ImageFile + ".mdb"; >+ string mdb_file = "/usr/lib/debug" + ImageFile + ".mdb"; > > try { > File = C.MonoSymbolFile.ReadSymbolFile (mdb_file); > } catch (Exception ex) { >- Report.Error ("Cannot load symbol file `{0}': {1}", mdb_file, ex.Message); >+ string mdb_file = ImageFile + ".mdb"; >+ try { >+ File = C.MonoSymbolFile.ReadSymbolFile (mdb_file); >+ } catch (Exception ex) { >+ Report.Error ("Cannot load symbol file `{0}': {1}", mdb_file, ex.Message); >+ } > } > > if (File == null)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 430500
:
293825
| 296700 |
296701