Bug 149777

Summary: array subscript out of range
Product: [Fedora] Fedora Reporter: David Binderman <dcb314>
Component: huntAssignee: Enrico Scholz <rh-bugzilla>
Status: CLOSED NEXTRELEASE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: medium    
Version: 3   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-03-03 13:50:21 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description David Binderman 2005-02-26 14:51:52 UTC
Description of problem:

I just tried to compile package hunt-1.5-2 from 
Redhat Fedora Extras development tree.

The compiler said

c/hash.c(29): warning #175: subscript out of range

The source code is

            return ht_size[sizeof(ht_size) / sizeof(ht_size[0])];

Suggest avoid reading one beyond the end of the array.  Maybe the
programmer meant

            return ht_size[ (sizeof(ht_size) / sizeof(ht_size[0])) - 1];


Version-Release number of selected component (if applicable):


How reproducible:


Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:


Additional info:

Comment 1 Enrico Scholz 2005-03-03 13:50:21 UTC
thx, fixed in CVS and will be in next release