Closed
Bug 334186
Opened 19 years ago
Closed 19 years ago
AsyncOpenExclusive returns freed value
Categories
(Core :: SQLite and Embedded Database Bindings, defect)
Tracking
()
RESOLVED
FIXED
mozilla1.8.1alpha2
People
(Reporter: timeless, Assigned: rflint)
References
(Blocks 1 open bug, )
Details
(Keywords: coverity, crash, fixed1.8.1)
Attachments
(1 file)
|
799 bytes,
patch
|
vlad
:
approval-branch-1.8.1+
|
Details | Diff | Splinter Review |
777 *aFile = nsnull;
should read:
777 osfile = nsnull;
then this problem wouldn't happen :)
| Assignee | ||
Comment 1•19 years ago
|
||
Comment 2•19 years ago
|
||
Depending on what is done with this dangling pointer and what conditions are required for taking the if-branch, this might be a security hole.
Flags: blocking-firefox2?
Whiteboard: [sg:investigate]
Updated•19 years ago
|
Attachment #218571 -
Flags: first-review?(brettw) → first-review+
Comment 3•19 years ago
|
||
Note: I'm pretty sure this is not a security hole. This condition is only triggered when there is a local filesystem error.
| Assignee | ||
Updated•19 years ago
|
Whiteboard: [sg:investigate] → [sg:investigate][checkin needed]
Comment 4•19 years ago
|
||
mozilla/storage/src/mozStorageAsyncIO.cpp 1.10
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
OS: Linux → All
Hardware: PC → All
Resolution: --- → FIXED
Whiteboard: [sg:investigate][checkin needed] → [sg:investigate]
Target Milestone: --- → mozilla1.8.1alpha2
Version: unspecified → 1.8 Branch
Updated•19 years ago
|
Attachment #218571 -
Flags: approval-branch-1.8.1?(vladimir)
Attachment #218571 -
Flags: approval-branch-1.8.1?(vladimir) → approval-branch-1.8.1+
Comment 5•19 years ago
|
||
mozilla/storage/src/mozStorageAsyncIO.cpp 1.1.2.10
Flags: blocking-firefox2?
Keywords: fixed1.8.1
Updated•19 years ago
|
Whiteboard: [sg:investigate]
Updated•7 years ago
|
Blocks: coverity-analysis
Updated•1 year ago
|
Product: Toolkit → Core
You need to log in
before you can comment on or make changes to this bug.
Description
•