kugel- commented on this pull request.
> + */
+static gchar *utils_strv_find_common_prefix(gchar **strv, size_t num)
+{
+ gchar *prefix, **ptr;
+
+ if (!NZV(strv))
+ return NULL;
+
+ if (num == 0)
+ num = g_strv_length(strv);
+
+ prefix = g_strdup(strv[0]);
+
+ for (gint i = 0; prefix[i]; i++)
+ {
+ foreach_strv(ptr, &strv[1])
Err, this line should be simply deleted.My mistake.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1445#discussion_r107840033