Thread (29 messages) 29 messages, 5 authors, 2017-05-17

Re: [PATCH v3 05/12] refs: move submodule slash stripping code to get_submodule_ref_store

From: Johannes Sixt <hidden>
Date: 2017-04-19 22:02:17

Am 19.04.2017 um 13:01 schrieb Nguyễn Thái Ngọc Duy:
quoted hunk ↗ jump to hunk
@@ -1558,7 +1543,17 @@ struct ref_store *get_submodule_ref_store(const char *submodule)
 {
 	struct strbuf submodule_sb = STRBUF_INIT;
 	struct ref_store *refs;
+	char *to_free = NULL;
 	int ret;
+	size_t len;
+
+	if (submodule) {
+		len = strlen(submodule);
+		while (len && submodule[len - 1] == '/')
What is the source of the value of 'submodule'? Is it an index entry? Or 
did it pass through parse_pathspec? In these cases it is correct to 
compare against literal '/'. Otherwise, is_dir_sep() is preferred.
+			len--;
+		if (!len)
+			submodule = NULL;
+	}

 	if (!submodule || !*submodule) {
 		/*
-- Hannes
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help