mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-14 07:49:01 +02:00
Make the caller responsible for allocating memory for the paste buffer data
(needed by the load-buffer command when dealing with big files since it'll prevent tmux from dying due to memory exhaustion). From nicm.
This commit is contained in:
10
paste.c
10
paste.c
@ -1,4 +1,4 @@
|
||||
/* $Id: paste.c,v 1.5 2009-01-23 16:19:41 nicm Exp $ */
|
||||
/* $Id: paste.c,v 1.6 2009-01-25 18:51:28 tcunha Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -97,7 +97,7 @@ paste_free_index(struct paste_stack *ps, u_int idx)
|
||||
}
|
||||
|
||||
void
|
||||
paste_add(struct paste_stack *ps, const char *data, u_int limit)
|
||||
paste_add(struct paste_stack *ps, char *data, u_int limit)
|
||||
{
|
||||
struct paste_buffer *pb;
|
||||
|
||||
@ -107,13 +107,13 @@ paste_add(struct paste_stack *ps, const char *data, u_int limit)
|
||||
pb = xmalloc(sizeof *pb);
|
||||
ARRAY_INSERT(ps, 0, pb);
|
||||
|
||||
pb->data = xstrdup(data);
|
||||
pb->data = data;
|
||||
if (gettimeofday(&pb->tv, NULL) != 0)
|
||||
fatal("gettimeofday");
|
||||
}
|
||||
|
||||
int
|
||||
paste_replace(struct paste_stack *ps, u_int idx, const char *data)
|
||||
paste_replace(struct paste_stack *ps, u_int idx, char *data)
|
||||
{
|
||||
struct paste_buffer *pb;
|
||||
|
||||
@ -123,7 +123,7 @@ paste_replace(struct paste_stack *ps, u_int idx, const char *data)
|
||||
pb = ARRAY_ITEM(ps, idx);
|
||||
xfree(pb->data);
|
||||
|
||||
pb->data = xstrdup(data);
|
||||
pb->data = data;
|
||||
if (gettimeofday(&pb->tv, NULL) != 0)
|
||||
fatal("gettimeofday");
|
||||
|
||||
|
Reference in New Issue
Block a user