gocarina / gocsv

The GoCSV package aims to provide easy CSV serialization and deserialization to the golang programming language
MIT License
1.95k stars 243 forks source link

UnmarshalToCallback leak goroutine #236

Open LeGamerDc opened 1 year ago

LeGamerDc commented 1 year ago

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)

LeGamerDc commented 1 year ago

make cerr buffered channel will solve it

LeGamerDc commented 1 year ago

make cerr buffered channel will solve it

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