From 568a47ff1e29b27fb817feb3c4fd81d58adc47ba Mon Sep 17 00:00:00 2001 From: dbs Date: Thu, 24 Jun 2010 23:52:29 +0000 Subject: [PATCH] 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 --- Open-ILS/src/apachemods/mod_idlchunk.c | 3 +++ 1 file changed, 3 insertions(+) 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 */ -- 2.11.0