FreeBSD Bugzilla – Attachment 16760 Details for
Bug 30617
[PATCH] ACPI bug: don't dereference a pointer you have set to NULL
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 813 bytes, created by
Poul-Henning Kamp
on 2001-09-16 22:00:01 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Poul-Henning Kamp
Created:
2001-09-16 22:00:01 UTC
Size:
813 bytes
patch
obsolete
>Index: exdyadic.c >=================================================================== >RCS file: /home/ncvs/src/sys/contrib/dev/acpica/exdyadic.c,v >retrieving revision 1.1.1.9 >diff -u -r1.1.1.9 exdyadic.c >--- exdyadic.c 7 Sep 2001 01:22:24 -0000 1.1.1.9 >+++ exdyadic.c 16 Sep 2001 20:41:41 -0000 >@@ -375,8 +375,11 @@ > break; > > default: >- ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Unexpected notify object type %X\n", >- Operand[0]->Common.Type)); >+ if (Operand[0] == NULL) >+ ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Unexpected notify object type (details at 11...)\n")); >+ else >+ ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Unexpected notify object type %X\n", >+ Operand[0]->Common.Type)); > > Status = AE_AML_OPERAND_TYPE; > break;
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 30617
: 16760