Closed Bug 211286 Opened 21 years ago Closed 21 years ago

void nsContentSupportMap::Init doesn't check the return value of PL_DHashTableInit

Categories

(Core :: XUL, defect)

x86
Windows 2000
defect
Not set
minor

Tracking

()

RESOLVED FIXED

People

(Reporter: timeless, Assigned: timeless)

References

()

Details

Attachments

(1 file)

This is a code inspection bug.

QA:
To verify that this bug is fixed, make sure that all callers in of 
PL_DHashTableInit in the indicated class/file check and handle a failure return 
result.
To verify that this bug is invalid, simply verify (e.g. with lxr) that 
PL_DHashTableInit is no longer used by the indicated class/file.

PL_DHashTableInit returns a PRBool indicating whether it succeeded. 
PL_DHashTableInit *can* fail. Code can not assume that table->ops or table-
>data will be null (in fact it probably will not be), although in all 
likelyhood table->entryStore will be null it probably isn't safe to assume this.

Code at time of bug filing:

  60 void
  61 nsContentSupportMap::Init()
  62 {
  63     PL_DHashTableInit(&mMap, &gOps, nsnull, sizeof(Entry), 
PL_DHASH_MIN_SIZE);
  64 }
Attached patch patchSplinter Review
Attachment #128528 - Flags: superreview?(bzbarsky)
Attachment #128528 - Flags: review?(dbaron)
Attachment #128528 - Flags: superreview?(bzbarsky) → superreview+
Comment on attachment 128528 [details] [diff] [review]
patch


>     PRBool Get(nsIContent* aElement, nsTemplateMatch** aMatch) {
>+        if (!mMap.ops)
>+            return NS_ERROR_NOT_INITIALIZED;
>+

Actually, you better return a value of the right type here.  I think you want
PR_FALSE.
.
Assignee: hyatt → timeless
checked in
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Component: XP Toolkit/Widgets: XUL → XUL
QA Contact: shrir → xptoolkit.widgets
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: