We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4d4ac2 commit 38bc495Copy full SHA for 38bc495
2 files changed
src/os_mswin.c
@@ -2893,7 +2893,7 @@ get_logfont(
2893
*/
2894
for (p = name; *p && *p != ':'; p++)
2895
{
2896
- if (p - name + 1 > LF_FACESIZE)
+ if (p - name + 1 >= LF_FACESIZE)
2897
goto theend; /* Name too long */
2898
lf->lfFaceName[p - name] = *p;
2899
}
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 72,
769
/**/
770
71,
771
0 commit comments