patch 8.2.3551: checking first character of url twice
Problem: Checking first character of url twice.
Solution: Only check once. (closes #9026)
diff --git a/src/misc1.c b/src/misc1.c
index 62eba02..109b7bb 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -2643,7 +2643,7 @@
return 0;
// check body: alpha or dash
- for (p = fname; (isalpha(*p) || (*p == '-')); ++p)
+ for (p = fname + 1; (isalpha(*p) || (*p == '-')); ++p)
;
// check last char is not a dash
diff --git a/src/version.c b/src/version.c
index e4f72bd..75c3519 100644
--- a/src/version.c
+++ b/src/version.c
@@ -758,6 +758,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3551,
+/**/
3550,
/**/
3549,