gocarina / gocsv

The GoCSV package aims to provide easy CSV serialization and deserialization to the golang programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UnmarshalToCallback leak goroutine

LeGamerDc opened this issue · comments

in UnmarshalToCallback the go func will try to send to cerr, while no one is doing recv (after chan c close for loop will end)

make cerr buffered channel will solve it

make cerr buffered channel will solve it

sorry ,can do that simple, err might be swallowed.