Closed
Bug 302
Opened 27 years ago
Closed 26 years ago
Another NULL cast issue in wffpPeer.cpp
Categories
(SeaMonkey :: Build Config, defect, P3)
Tracking
(Not tracked)
VERIFIED
WONTFIX
People
(Reporter: berkley, Assigned: dp)
Details
Created by Berkley Shands (berkley@cs.wustl.edu) on Wednesday, May 6, 1998 7:08:54 AM PDT
Additional Details :
cxx: Error: wffpPeer.cpp, line 43: no instance of
constructor "wfDlm::wfDlm" matches the argument list
argument types are: (long)
: dlm(NULL), deleted(0), disabled(0), native(-1),
--------------^
cxx: Error: wffpPeer.cpp, line 76: no instance of
constructor "wfMimeList::wfMimeList" matches the argument
list
argument types are: (long)
: dlm(dlmName), mimeList(NULL), deleted(0),
disabled(0), native(-1),
---------------------------------^
cxx: Error: wffpPeer.cpp, line 125: no instance of
constructor "wfDlm::wfDlm" matches the argument list
argument types are: (long)
: dlm(NULL), deleted(0), disabled(0), native(-1),
--------------^
at line 45 change to
FontDisplayerPeerObject(struct nffp *fp)
: dlm((const char*) NULL, (const char*) NULL), deleted(0),
disabled(0), native(-1),
streamCount(0), fhList(NULL), unloadTimerId(NULL)
same at line 76 (add explicit cast on NULL)
same at line 125 (add explicit args and casts)
berkley
Assignee | ||
Updated•27 years ago
|
Status: NEW → ASSIGNED
Updated•26 years ago
|
Component: FontLib → Build Config
Product: MozillaClassic → Browser
Version: 1998-04-08 → other
Comment 1•26 years ago
|
||
ditto
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → WONTFIX
Assignee | ||
Comment 2•26 years ago
|
||
modules/libfont wont be in the seamonkey build
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•