Closed
Bug 603324
Opened 14 years ago
Closed 14 years ago
checkGuardBlock could be written with an ifdef GUARD_BLOCKS
Categories
(Core :: Graphics, enhancement)
Core
Graphics
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: timeless, Assigned: timeless)
References
(Blocks 1 open bug)
Details
(Keywords: coverity)
Attachments
(1 file)
(deleted),
patch
|
Details | Diff | Splinter Review |
159 #ifdef GUARD_BLOCKS
160 const size_t TAllocation::guardBlockSize = 16;
161 #else
162 const size_t TAllocation::guardBlockSize = 0;
163 #endif
168 void TAllocation::checkGuardBlock(unsigned char* blockMem, unsigned char val, const char* locText) const
169 {
this is never true ifndef GUARD_BLOCKS
170 for (size_t x = 0; x < guardBlockSize; x++) {
179 }
180 }
Comment 2•14 years ago
|
||
As angleprojet issue 61 status is "wontfix", this bug must be closed as "wontfix".
Updated•14 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 14 years ago
Resolution: --- → WONTFIX
Updated•6 years ago
|
Blocks: coverity-analysis
You need to log in
before you can comment on or make changes to this bug.
Description
•