mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
gdp: Allocate the 1 byte more memory that was forgotten!!!!!
Original commit message from CVS: 2005-02-18 Zaheer Abbas Merali <zaheerabbas at merali dot org> * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_dump_byte_array): Allocate the 1 byte more memory that was forgotten!!!!!
This commit is contained in:
parent
b8d7a44a41
commit
0e084e2179
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ gst_dp_dump_byte_array (guint8 * array, guint length)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int n = 8; /* number of bytes per line */
|
int n = 8; /* number of bytes per line */
|
||||||
gchar *line = g_malloc (3 * n);
|
gchar *line = g_malloc (3 * n + 1);
|
||||||
|
|
||||||
GST_LOG ("dumping byte array of length %d", length);
|
GST_LOG ("dumping byte array of length %d", length);
|
||||||
for (i = 0; i < length; ++i) {
|
for (i = 0; i < length; ++i) {
|
||||||
|
|
Loading…
Reference in a new issue