Closed
Bug 231
Opened 27 years ago
Closed 26 years ago
Compiler Error
Categories
(MozillaClassic Graveyard :: LibMocha, defect, P3)
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);
Updated•27 years ago
|
Assignee: chouck → mlm
Comment 1•27 years ago
|
||
Chouck no longer works here; reassigning to the current owner of LibMocha.
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?
You need to log in
before you can comment on or make changes to this bug.
Description
•