From: dbs Date: Thu, 24 Jun 2010 23:52:29 +0000 (+0000) Subject: Return NULL if we don't have anything else to return (keeps the compiler happy) X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=568a47ff1e29b27fb817feb3c4fd81d58adc47ba;p=evergreen%2Fpines.git Return NULL if we don't have anything else to return (keeps the compiler happy) git-svn-id: svn://svn.open-ils.org/ILS/trunk@16810 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/apachemods/mod_idlchunk.c b/Open-ILS/src/apachemods/mod_idlchunk.c index 0cc7a5fcfb..068a448cb3 100644 --- a/Open-ILS/src/apachemods/mod_idlchunk.c +++ b/Open-ILS/src/apachemods/mod_idlchunk.c @@ -360,6 +360,9 @@ static char* find_id_attr( const char** atts ) { if (!strcmp(name,"id")) return value; i++; } + + /* In case we don't find anything to return */ + return NULL; } /* cycles through the attributes attached to an element */