<html>
<head>
<base href="http://llvm.org/bugs/" />
</head>
<body><table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Bug ID</th>
<td><a class="bz_bug_link
bz_status_NEW "
title="NEW --- - alpha.security.ArrayBound false positive"
href="http://llvm.org/bugs/show_bug.cgi?id=18326">18326</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>alpha.security.ArrayBound false positive
</td>
</tr>
<tr>
<th>Product</th>
<td>clang
</td>
</tr>
<tr>
<th>Version</th>
<td>trunk
</td>
</tr>
<tr>
<th>Hardware</th>
<td>All
</td>
</tr>
<tr>
<th>OS</th>
<td>Linux
</td>
</tr>
<tr>
<th>Status</th>
<td>NEW
</td>
</tr>
<tr>
<th>Severity</th>
<td>enhancement
</td>
</tr>
<tr>
<th>Priority</th>
<td>P
</td>
</tr>
<tr>
<th>Component</th>
<td>Static Analyzer
</td>
</tr>
<tr>
<th>Assignee</th>
<td>kremenek@apple.com
</td>
</tr>
<tr>
<th>Reporter</th>
<td>its.svati@gmail.com
</td>
</tr>
<tr>
<th>CC</th>
<td>llvmbugs@cs.uiuc.edu
</td>
</tr>
<tr>
<th>Classification</th>
<td>Unclassified
</td>
</tr></table>
<p>
<div>
<pre>Created <span class=""><a href="attachment.cgi?id=11782" name="attach_11782" title="Contains two examples of array out of bounds">attachment 11782</a> <a href="attachment.cgi?id=11782&action=edit" title="Contains two examples of array out of bounds">[details]</a></span>
Contains two examples of array out of bounds
Attached example contains two instance of array out of bound access. They are
as follows:
// This example is reported
int a[2] = {1, 2};
a[3] = 3;
// This example is not reported
int i, b[10];
for(i=0;i<=10;i++)
b[i]= i;</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are on the CC list for the bug.</li>
</ul>
</body>
</html>