Allocate space to prevent SIGSEGV.

pull/137/head
Ollivier Robert 2021-04-15 12:25:43 +02:00 committed by mattn
parent adff0e83b9
commit 2f161cfa50
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ func (c *Client) GetTimelineDirect(ctx context.Context, pg *Pagination) ([]*Stat
return nil, err
}
var statuses []*Status
var statuses = make([]*Status, len(conversations))
for _, c := range conversations {
s := c.LastStatus