]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix lib/sellist.c
authorKern Sibbald <kern@sibbald.com>
Mon, 2 Jan 2012 14:34:53 +0000 (15:34 +0100)
committerKern Sibbald <kern@sibbald.com>
Mon, 2 Jan 2012 14:34:53 +0000 (15:34 +0100)
bacula/src/lib/sellist.c

index 0d64668a03744026e14c5c4b0986454d1db155c3..34d74df3be6aaddc874150db9e4262be23417194 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula(R) - The Network Backup Solution
 
-   Copyright (C) 2011-2011 Free Software Foundation Europe e.V.
+   Copyright (C) 2011-2012 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
  */
 int64_t sellist::next()
 {
-   if (e == NULL) {
-      goto bail_out;
-   }
    errmsg = NULL;
    if (beg <= end) {
       return beg++;
    }
+   if (e == NULL) {
+      goto bail_out;
+   }
    /*
     * As we walk the list, we set EOF in
     *   the end of the next item to ease scanning,