- --
Viewing Issue Advanced Details
[ Jump to Notes ]
| ID | Category [?] | Severity [?] | Reproducibility | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 01864 | Interface | Major | Always | Jun 5, 2008, 16:54 | Jun 9, 2008, 10:42 |
| Tester | Roman | View Status | Public | Platform | MAME (Self-compiled) |
| Assigned To | aaron | Resolution | Fixed | OS | Windows XP/Vista 64-bit |
| Status [?] | Resolved | Driver | |||
| Version | 0.125u4 | Fixed in Version | 0.125u5 | Build | |
| Fixed in Git Commit | Github Pull Request # | ||||
| Summary | 01864: -listxml still crashes | ||||
| Description |
Crashes while displaying "propcycl".
</dipswitch>
<driver status="imperfect" emulation="good" color="good" sound="
imperfect" graphic="imperfect" savestate="unsupported" palettesize="32768"/>
</game>
-----------------------------------------------------
Exception at EIP=009760AD: ACCESS VIOLATION
While attempting to read memory at 00000000
-----------------------------------------------------
EAX=00000000 EBX=019097A0 ECX=00000000 EDX=00000000
ESI=00000000 EDI=019097A0 EBP=0022FDA8 ESP=0022FCE0
|
||||
| Steps To Reproduce | |||||
| Additional Information | |||||
| Github Commit | |||||
| Flags | |||||
| Regression Version | |||||
| Affected Sets / Systems | |||||
|
Attached Files
|
--- src\emu\inptport.c 2008-06-05 12:23:40.000000000 -0400
+++ update\inptport.c 2008-06-05 13:54:32.000000000 -0400
@@ -731,6 +731,8 @@
const input_port_config *input_port_config_alloc(const input_port_token *tokens, char *errorbuf, int errorbuflen)
{
+ if (tokens == NULL)
+ return NULL;
if (errorbuf != NULL)
*errorbuf = 0;
return port_config_detokenize(NULL, tokens, errorbuf, errorbuflen);
| ||||
Relationships
| There are no relationship linked to this issue. |
Notes
4
|
No.01198
abelenki Tester
Jun 5, 2008, 17:24
|
any resolution (source fix) for newly introduced xml output crash? |
|---|---|
|
No.01199
Tafoid Administrator
Jun 5, 2008, 17:26
|
Nothing as of yet. Please give it some time. |
|
No.01201
Tafoid Administrator
Jun 5, 2008, 17:58
edited on: Jun 5, 2008, 18:00 |
.DIFF file attached to fix the XML issue for 0.125u4. Reference: http://www.mameworld.info/ubbthreads/showthreaded.php?Cat=&Number=153490 |
|
No.01248
abelenki Tester
Jun 9, 2008, 10:42
|
thanks, works great!! |