[PATCH] Do not include unused header files.
[git.git] / diffcore-pathspec.c
index 78b3cb4..7f18a6c 100644 (file)
@@ -4,7 +4,6 @@
 #include "cache.h"
 #include "diff.h"
 #include "diffcore.h"
-#include "delta.h"
 
 struct path_spec {
        const char *spec;
@@ -45,17 +44,20 @@ void diffcore_pathspec(const char **pathspec)
        speccnt = i;
        spec = xmalloc(sizeof(*spec) * speccnt);
        for (i = 0; pathspec[i]; i++) {
+               int l;
                spec[i].spec = pathspec[i];
-               spec[i].len = strlen(pathspec[i]);
+               l = strlen(pathspec[i]);
+               while (l > 0 && pathspec[i][l-1] == '/')
+                       l--;
+               spec[i].len = l;
        }
 
        for (i = 0; i < q->nr; i++) {
                struct diff_filepair *p = q->queue[i];
-               if (matches_pathspec(p->one->path, spec, speccnt) ||
-                   matches_pathspec(p->two->path, spec, speccnt))
+               if (matches_pathspec(p->two->path, spec, speccnt))
                        diff_q(&outq, p);
                else
-                       free(p);
+                       diff_free_filepair(p);
        }
        free(q->queue);
        *q = outq;