bugfix: fix the buffer size of pipemsg

This commit is contained in:
flygoast 2013-06-07 00:23:50 +08:00
parent 3c9f88330b
commit 367d5e940a
1 changed files with 1 additions and 1 deletions

View File

@ -1246,7 +1246,7 @@ l_exec( lua_State *L )
struct pipemsg *pm;
logstring( "Exec", "adding pipe observance" );
pm = s_calloc( 1, sizeof( struct pipemsg ) );
pm->text = s_calloc( pipe_len + 1, sizeof( char * ) );
pm->text = s_calloc( pipe_len + 1, sizeof( char ) );
memcpy( pm->text, pipe_text, pipe_len + 1 );
pm->tlen = pipe_len;
pm->pos = len;