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 29b281b commit bbf9f34Copy full SHA for bbf9f34
2 files changed
src/os_win32.c
@@ -3532,7 +3532,10 @@ mch_get_acl(char_u *fname)
3532
3533
wn = enc_to_utf16(fname, NULL);
3534
if (wn == NULL)
3535
+ {
3536
+ vim_free(p);
3537
return NULL;
3538
+ }
3539
3540
// Try to retrieve the entire security descriptor.
3541
err = GetNamedSecurityInfoW(
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 1975,
755
/**/
756
1974,
757
0 commit comments