Adam Spiers
c082df2453
dir.c: use a single struct exclude_list per source of excludes
...
Previously each exclude_list could potentially contain patterns
from multiple sources. For example dir->exclude_list[EXC_FILE]
would typically contain patterns from .git/info/exclude and
core.excludesfile, and dir->exclude_list[EXC_DIRS] could contain
patterns from multiple per-directory .gitignore files during
directory traversal (i.e. when dir->exclude_stack was more than
one item deep).
We split these composite exclude_lists up into three groups of
exclude_lists (EXC_CMDL / EXC_DIRS / EXC_FILE as before), so that each
exclude_list now contains patterns from a single source. This will
allow us to cleanly track the origin of each pattern simply by adding
a src field to struct exclude_list, rather than to struct exclude,
which would make memory management of the source string tricky in the
EXC_DIRS case where its contents are dynamically generated.
Similarly, by moving the filebuf member from struct exclude_stack to
struct exclude_list, it allows us to track and subsequently free
memory buffers allocated during the parsing of all exclude files,
rather than only tracking buffers allocated for files in the EXC_DIRS
group.
Signed-off-by: Adam Spiers <git@adamspiers.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-01-06 14:25:06 -08:00
..
2012-03-28 08:47:23 -07:00
2009-10-01 08:21:35 -04:00
2012-09-14 20:57:23 -07:00
2013-01-06 14:25:06 -08:00
2011-08-08 09:30:12 -07:00
2012-09-11 11:08:40 -07:00
2011-10-05 10:47:10 -07:00
2012-08-15 11:00:39 -07:00
2012-07-30 13:04:39 -07:00
2009-12-03 12:41:37 -08:00
2012-06-19 11:35:19 -07:00
2010-01-31 10:24:53 -08:00
2012-04-26 13:19:06 -07:00
2012-06-22 14:25:04 -07:00
2010-08-20 10:53:56 -07:00
2012-04-26 13:19:06 -07:00
2011-03-09 13:10:35 -08:00
2011-05-31 12:01:06 -07:00
2012-04-20 15:49:16 -07:00
2011-07-06 14:26:26 -07:00
2011-03-11 10:59:16 -05:00
2011-03-11 10:59:16 -05:00
2012-04-26 13:19:06 -07:00
2010-08-20 14:16:51 -07:00
2011-08-09 10:26:18 -07:00
2012-04-26 13:19:06 -07:00
2012-05-03 15:13:31 -07:00
2012-04-26 13:19:06 -07:00
2011-03-11 10:59:16 -05:00
2011-09-22 16:38:22 -07:00
2012-04-26 13:19:06 -07:00
2011-03-11 10:59:16 -05:00
2012-09-14 20:45:03 -07:00
2012-07-11 12:45:34 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-08-28 23:47:55 -07:00
2012-01-16 16:26:26 -08:00
2012-06-19 11:35:19 -07:00
2012-07-17 13:11:03 -07:00
2012-08-06 15:37:09 -07:00
2012-09-11 11:09:09 -07:00
2011-07-06 14:26:26 -07:00
2011-12-11 23:16:25 -08:00
2011-12-11 23:16:25 -08:00
2011-12-12 16:09:38 -08:00
2011-07-06 14:26:26 -07:00
2011-03-11 10:59:16 -05:00
2012-04-26 13:19:06 -07:00
2012-08-06 15:39:16 -07:00
2012-08-06 14:04:16 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-05-26 22:15:39 -07:00
2011-03-11 10:59:16 -05:00
2012-04-23 12:00:42 -07:00
2012-04-26 13:19:06 -07:00
2012-05-02 13:51:45 -07:00
2012-04-02 13:47:15 -07:00
2011-07-06 14:26:26 -07:00
2012-08-24 12:05:30 -07:00
2012-02-23 11:20:15 -08:00
2011-09-08 13:56:19 -07:00
2012-04-26 13:19:06 -07:00
2011-07-06 14:26:26 -07:00
2012-08-24 12:05:30 -07:00
2012-04-26 13:19:06 -07:00
2011-07-06 14:26:26 -07:00
2012-06-01 13:01:41 -07:00
2011-08-04 15:49:13 -07:00
2011-03-11 10:59:16 -05:00
2011-07-06 14:26:26 -07:00
2011-07-11 09:35:46 -07:00
2011-08-23 21:36:20 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2012-05-07 15:48:15 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-10-16 11:09:35 -07:00
2012-04-26 13:19:06 -07:00
2012-08-06 14:04:16 -07:00
2011-03-11 10:59:16 -05:00
2011-05-18 14:37:46 -07:00
2011-03-11 10:59:16 -05:00
2012-01-12 23:34:26 -08:00
2011-07-06 14:26:26 -07:00
2011-05-16 16:38:46 -07:00
2011-08-04 15:49:13 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2012-08-06 15:34:20 -07:00
2011-09-11 21:52:18 -07:00
2012-07-23 14:42:39 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-12-12 11:52:31 -08:00
2011-03-11 10:59:16 -05:00
2012-04-26 13:19:06 -07:00
2012-05-07 13:28:34 -07:00
2011-04-13 11:59:11 -07:00
2011-07-06 14:26:26 -07:00
2012-08-24 12:05:30 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2012-08-17 00:26:52 -07:00
2012-05-02 13:51:45 -07:00
2011-03-11 10:59:16 -05:00
2012-01-06 12:44:01 -08:00
2012-08-06 15:34:20 -07:00
2011-09-06 11:42:12 -07:00
2012-04-26 13:19:06 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-08-04 15:49:13 -07:00
2012-04-26 13:19:06 -07:00
2011-09-01 15:52:02 -07:00
2012-04-26 13:19:06 -07:00
2012-02-28 14:55:39 -08:00
2012-08-06 14:04:16 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2012-04-26 13:19:06 -07:00
2012-04-26 13:19:06 -07:00
2011-05-19 10:55:54 -07:00
2012-05-23 13:35:19 -07:00
2012-04-26 13:19:06 -07:00
2012-04-26 13:19:06 -07:00
2012-02-27 10:29:24 -08:00
2011-09-06 11:10:41 -07:00
2012-03-28 11:18:35 -07:00
2011-09-11 21:52:18 -07:00
2011-12-28 11:42:51 -08:00
2011-07-06 14:26:26 -07:00
2012-04-26 13:19:06 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2012-04-26 13:19:06 -07:00
2012-04-26 13:19:06 -07:00
2011-03-11 10:59:16 -05:00
2012-04-26 13:19:06 -07:00
2012-05-24 17:32:30 -07:00
2011-12-12 16:48:54 -08:00
2012-08-24 09:00:43 -07:00
2012-05-17 09:35:18 +00:00
2012-02-27 15:58:36 -08:00
2012-08-24 12:05:30 -07:00
2012-04-26 13:19:06 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2012-04-04 09:57:50 -07:00
2011-08-16 11:41:28 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-08-17 17:35:38 -07:00
2012-05-22 09:08:20 -07:00
2011-07-06 14:26:26 -07:00
2011-07-06 14:26:26 -07:00
2011-09-11 21:52:18 -07:00
2012-04-26 13:19:06 -07:00
2011-07-06 14:26:26 -07:00
2012-09-14 20:57:23 -07:00
2012-10-15 14:57:17 -07:00
2012-09-14 20:45:03 -07:00
2012-05-02 13:53:28 -07:00
2012-04-26 13:19:06 -07:00
2011-07-06 14:26:26 -07:00
2012-04-26 13:19:06 -07:00
2012-04-26 13:19:06 -07:00
2011-03-11 10:59:16 -05:00
2011-07-06 14:26:26 -07:00
2012-05-11 08:39:33 -07:00
2011-09-16 09:20:23 -07:00
2011-08-23 21:35:47 -07:00
2010-07-05 13:39:02 -07:00
2012-02-03 23:19:42 -08:00
2011-07-06 14:26:26 -07:00
2012-06-19 11:35:19 -07:00
2012-03-23 11:22:04 -07:00
2012-04-26 13:19:06 -07:00
2012-08-06 15:34:20 -07:00
2010-01-10 13:01:28 +01:00
2011-11-08 13:37:10 -08:00
2010-09-09 16:17:59 -07:00
2012-06-08 08:32:20 -07:00
2009-12-05 10:03:49 -08:00
2009-10-22 12:59:50 -07:00
2011-05-06 15:12:30 -07:00
2012-03-20 15:39:10 -07:00
2010-10-26 21:54:04 -07:00
2012-04-26 13:19:06 -07:00
2011-05-18 12:40:15 -07:00
2012-04-26 13:19:06 -07:00
2012-08-24 12:05:40 -07:00
2012-08-23 14:37:49 -07:00
2011-11-22 18:16:59 -08:00
2011-09-11 20:53:00 -07:00
2010-01-10 13:01:28 +01:00
2010-07-20 16:59:17 -07:00
2012-08-07 14:30:52 -07:00
2012-08-06 15:34:20 -07:00