Bug 442863
| Summary: | install exits abnormally | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Red Hat Enterprise Linux 4 | Reporter: | Alexander Todorov <atodorov> | ||||
| Component: | anaconda | Assignee: | Chris Lumens <clumens> | ||||
| Status: | CLOSED ERRATA | QA Contact: | Alexander Todorov <atodorov> | ||||
| Severity: | high | Docs Contact: | |||||
| Priority: | low | ||||||
| Version: | 4.7 | CC: | dmach, jlaska, rwilliam | ||||
| Target Milestone: | beta | Keywords: | TestBlocker | ||||
| Target Release: | --- | ||||||
| Hardware: | All | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | RHBA-2008-0653 | Doc Type: | Bug Fix | ||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2008-07-24 19:06:18 UTC | Type: | --- | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
Alexander Todorov
2008-04-17 08:57:40 UTC
What's the last thing you see on tty3? Created attachment 302734 [details]
tty3 / xen pv guest
on tty1 I noticed:
*** glibc detected *** free(): invalid pointer: 0x0000007fbfffac60 ***
install exited abnormally -- received signal 6
^^^ this is different from the original (on bare metal) which said received
signal 11
Assuming your two segfaults are the same thing and not two completely different
problems, we have a one line fix in hand:
diff --git a/loader2/modules.c b/loader2/modules.c
index ccbf914..844c94e 100644
--- a/loader2/modules.c
@@ -652,7 +665,6 @@ static int removeHostAdapter(char *conf, char *name) {
if (ret || strncmp(buf, "alias scsi_hostadapter", 22)) {
fputs(buf, out);
- free(buf);
continue;
}
+++ b/loader2/modules.c
Ignore the horrible formatting there, but you see what's going on. Chris, if you provide an updates.img I can test it tomorrow morning. Updates images don't work for testing problems in the loader, which is what this is. An advisory has been issued which should help the problem described in this bug report. This report is therefore being closed with a resolution of ERRATA. For more information on therefore solution and/or where to find the updated files, please follow the link below. You may reopen this bug report if the solution does not work for you. http://rhn.redhat.com/errata/RHBA-2008-0653.html |