1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

Fix overflow in vfs_recycle module (and hopefully also bug #291)

This commit is contained in:
Jelmer Vernooij 0001-01-01 00:00:00 +00:00
parent c8f4d7952f
commit 8625f0e015

View File

@ -455,7 +455,8 @@ static int recycle_unlink(vfs_handle_struct *handle, connection_struct *conn, co
/* rename file we move to recycle bin */
i = 1;
while (recycle_file_exist(handle, final_name)) {
snprintf(final_name, PATH_MAX -1, "%s/Copy #%d of %s", temp_name, i++, base);
SAFE_FREE(final_name);
asprintf(&final_name, "%s/Copy #%d of %s", temp_name, i++, base);
}
DEBUG(10, ("recycle: Moving %s to %s\n", file_name, final_name));