Return NULL if we don't have anything else to return (keeps the compiler happy)
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 24 Jun 2010 23:52:29 +0000 (23:52 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 24 Jun 2010 23:52:29 +0000 (23:52 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@16810 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/apachemods/mod_idlchunk.c

index 0cc7a5f..068a448 100644 (file)
@@ -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 */