This is an automated email from the git hooks/post-receive script. bluesabre pushed a commit to branch master in repository apps/parole.
commit 20af602eaa39e17306df209fa52e4cb5212b3733 Author: Simon Marchi <[email protected]> Date: Tue Jun 24 07:25:11 2014 -0400 Fix off by one error in allocation, bug 10962 --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index f0ba015..ba19329 100644 --- a/src/main.c +++ b/src/main.c @@ -137,7 +137,7 @@ parole_send_files (gchar **filenames, gboolean enqueue) if ( !proxy ) g_error ("Unable to create proxy for %s", PAROLE_DBUS_NAME); - out_paths = g_new0 (gchar *, g_strv_length (filenames)); + out_paths = g_new0 (gchar *, g_strv_length (filenames) + 1); for ( i = 0; filenames && filenames[i]; i++) { -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
