[open-ils-commits] r16810 - trunk/Open-ILS/src/apachemods (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Jun 24 19:52:30 EDT 2010
Author: dbs
Date: 2010-06-24 19:52:29 -0400 (Thu, 24 Jun 2010)
New Revision: 16810
Modified:
trunk/Open-ILS/src/apachemods/mod_idlchunk.c
Log:
Return NULL if we don't have anything else to return (keeps the compiler happy)
Modified: trunk/Open-ILS/src/apachemods/mod_idlchunk.c
===================================================================
--- trunk/Open-ILS/src/apachemods/mod_idlchunk.c 2010-06-24 18:51:57 UTC (rev 16809)
+++ trunk/Open-ILS/src/apachemods/mod_idlchunk.c 2010-06-24 23:52:29 UTC (rev 16810)
@@ -360,6 +360,9 @@
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 */
More information about the open-ils-commits
mailing list