Bug 113664 - missing return statement ?
Summary: missing return statement ?
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Fedora
Classification: Fedora
Component: cyrus-sasl
Version: 1
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Nalin Dahyabhai
QA Contact: Brian Brock
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2004-01-16 09:54 UTC by d.binderman
Modified: 2007-11-30 22:10 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2006-04-22 04:57:10 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description d.binderman 2004-01-16 09:54:52 UTC
Description of problem:

I just tried to compile package cyrus-sasl-2.1.15-6, from Redhat
Fedora Core 1.

The compiler said

sasldblistusers.c(114): warning #1011: missing return statement at end
of non-void function "listusers"

The source code is

int listusers(const char *path, listcb_t *cb)
{
    GDBM_FILE indb, outdb;
    datum dkey, nextkey, ekey;

	/* ... */


    gdbm_close(indb);
}

Note the missing return statement. I'm not sure what the fix is for
this. Maybe a quick 

    return 0; 

would do.



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


How reproducible:


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


Expected results:


Additional info:

Comment 1 John Thacker 2006-04-22 04:57:10 UTC
Not going to patch upstream code to quiet a compiler warning rather 
than fix a bug or error.


Note You need to log in before you can comment on or make changes to this bug.