Merge 10.6 into 10.11

This commit is contained in:
Marko Mäkelä 2026-03-31 11:48:18 +03:00
commit 29be734aaf
29 changed files with 473 additions and 136 deletions

View file

@ -281,7 +281,9 @@ local_close(ds_file_t *file)
ret = set_eof(fd);
}
my_close(fd, MYF(MY_WME));
if (my_close(fd, MYF(MY_WME)) != 0)
ret= 1;
my_free(file);
return ret;
}