Closed Bug 231 Opened 27 years ago Closed 26 years ago

Compiler Error

Categories

(MozillaClassic Graveyard :: LibMocha, defect, P3)

1998-03-31
HP
HP-UX

Tracking

(Not tracked)

VERIFIED WONTFIX

People

(Reporter: dnebinger, Assigned: mlm)

Details

Created by David Nebinger (dnebinger@synertech.highmark.com) on Wednesday, April 15, 1998 6:40:44 AM PDT Additional Details : Lines 2314 and 2315 of ns/lib/libmocha/et_moz.c generate errors due to the cast included in the macro call to PR_FREEIF. Instead of using: PR_FREEIF((char*) e->wysiwyg_url); PR_FREEIF((char*) e->base_href); Try using: PR_FREEIF(e->wysiwyg_url); PR_FREEIF(e->base_href);
Assignee: chouck → mlm
Chouck no longer works here; reassigning to the current owner of LibMocha.
Status: NEW → ASSIGNED
Those casts are probably there because of another system which is more picky about its types. What is the error that the HP compiler generates? Is it possible to change it to PR_FREEIF(((char*) e->wysiwyg_url)); PR_FREEIF(((char*) e->base_href)); instead to avoid the problem?
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → WONTFIX
Resolved as WONTFIX. libmocha is dead in the Gecko world.
Status: RESOLVED → VERIFIED
Marking Verified/Won't Fix
You need to log in before you can comment on or make changes to this bug.