Add check for integer overflow in odr_write YAZ-816
[yaz-moved-to-github.git] / src / match_glob.c
index 2fa028a..55e5367 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2012 Index Data
+ * Copyright (C) Index Data
  * See the file LICENSE for details.
  */
 /**
@@ -24,7 +24,7 @@ int yaz_match_glob(const char *glob, const char *text)
         return *text == '\0';
     if (glob[0] == '*')
     {
-        do 
+        do
         {
             if (yaz_match_glob(glob+1, text))
                 return 1;