score_update(): Don't return an error if file is not admissible.
[paraslash.git] / score.c
diff --git a/score.c b/score.c
index 8f75a1a02f6091c957b51472f8168c1fd550bb2d..f2a28b7559bd49308559262fa3d475d041cab88f 100644 (file)
--- a/score.c
+++ b/score.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2007-2008 Andre Noll <maan@systemlinux.org>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
@@ -182,6 +182,8 @@ int score_update(const struct osl_row *aft_row, long percent)
                .size = sizeof(aft_row)};
        int ret = osl_get_row(score_table, SCORECOL_AFT_ROW, &obj, &row);
 
+       if (ret == -E_RB_KEY_NOT_FOUND) /* not an error */
+               return 1;
        if (ret < 0)
                return ret;
        ret = get_num_admissible_files(&n);