More crash-resistant on network failure (patch from Lekensteyn)
[ppastats.git] / src / ppastats.c
index fdcd6e1..38f6dd0 100644 (file)
@@ -258,11 +258,20 @@ create_ppa_stats(const char *owner,
        ppa->daily_download_totals = NULL;
        ppa->download_count = 0;
 
-       h_cur = history;
-       while (*h_cur) {
+       for (h_cur = history; *h_cur; ++h_cur) {
                h = *h_cur;
                totals = get_daily_download_totals(h->self_link);
+               if (!totals) {
+                       fprintf(stderr, "Failed to retrieve download totals"
+                               " for %s\n", h->self_link);
+                       continue;
+               }
                count = get_download_count(h->self_link);
+               if (count == -1) {
+                       fprintf(stderr, "Failed to retrieve download count"
+                               " for %s\n", h->self_link);
+                       count = 0;
+               }
                pkg_name = h->binary_package_name;
                pkg_version = h->binary_package_version;
                arch_series
@@ -293,8 +302,6 @@ create_ppa_stats(const char *owner,
                pkg_add_distro(pkg, distro_series->name, count, totals);
 
                daily_download_total_list_free(totals);
-
-               h_cur++;
        }
 
        binary_package_publishing_history_list_free(history);