[git commit master 1/1] diff: cosmetic change on top of last commit

Denys Vlasenko vda.linux at googlemail.com
Fri Jul 9 17:44:38 UTC 2010


commit: http://git.busybox.net/busybox/commit/?id=32a6baeefaf040fb04fee7be3ea7c6e60b95f5bd
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 editors/diff.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/editors/diff.c b/editors/diff.c
index 8d91b83..3e20483 100644
--- a/editors/diff.c
+++ b/editors/diff.c
@@ -761,9 +761,9 @@ static int FAST_FUNC add_to_dirlist(const char *filename,
 {
 	struct dlist *const l = userdata;
 	const char *file = filename + l->len;
-	l->dl = xrealloc_vector(l->dl, 6, l->e);
 	while(*file == '/')
 		file++;
+	l->dl = xrealloc_vector(l->dl, 6, l->e);
 	l->dl[l->e] = xstrdup(file);
 	l->e++;
 	return TRUE;
-- 
1.7.1



More information about the busybox-cvs mailing list