Displaying 3 results from an estimated 3 matches for "xx_r".
Did you mean:
xx_2
2020 Jun 30
2
[Announce] Samba 4.11.10 Available for Download
Release Announcements
---------------------
This is the latest stable release of the Samba 4.11 release series.
Changes since 4.11.9
--------------------
o Jeremy Allison <jra at samba.org>
* BUG 14374: Fix segfault when using SMBC_opendir_ctx() routine for share
folder that contains incorrect symbols in any file name.
o Ralph Boehme <slow at samba.org>
* BUG 14350:
2020 Jun 30
2
[Announce] Samba 4.11.10 Available for Download
Release Announcements
---------------------
This is the latest stable release of the Samba 4.11 release series.
Changes since 4.11.9
--------------------
o Jeremy Allison <jra at samba.org>
* BUG 14374: Fix segfault when using SMBC_opendir_ctx() routine for share
folder that contains incorrect symbols in any file name.
o Ralph Boehme <slow at samba.org>
* BUG 14350:
2020 Jun 30
0
[Announce] Samba 4.11.10 Available for Download
...static char *get_user_home_dir(TALLOC_CTX *mem_ctx)
{
struct passwd pwd = {0};
One might wanna change the code to use a dynamically allocated ?buf? and have a loop around getpwnam_r() that checks for ERANGE and retry with a bigger ?buf? though.
(Same basically goes for all the get{pw,gr}xx_r() functions - not 100% important for getpw unless you have extremely long path?s or silly long full names but the getgrxx() calls might need it for groups with huge membership lists?)
- Peter
> On 30 Jun 2020, at 12:22, Karolin Seeger via samba <samba at lists.samba.org> wrote:
>
&g...