Revision: 2550
http://tmux.svn.sourceforge.net/tmux/?rev=2550&view=rev
Author: nicm
Date: 2011-07-09 01:38:01 +0000 (Sat, 09 Jul 2011)
Log Message:
-----------
Pass the right size to calloc (* not **).
Modified Paths:
--------------
trunk/arguments.c
Modified: trunk/arguments.c
===================================================================
--- trunk/arguments.c 2011-07-08 22:58:30 UTC (rev 2549)
+++ trunk/arguments.c 2011-07-09 01:38:01 UTC (rev 2550)
@@ -39,7 +39,7 @@
if (argc == 0)
args->argv = NULL;
else
- args->argv = xcalloc(argc, sizeof **args->argv);
+ args->argv = xcalloc(argc, sizeof *args->argv);
va_start(ap, argc);
for (i = 0; i < argc; i++)
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
tmux-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tmux-cvs