|
|
|
|
|
by sapiogram
478 days ago
|
|
errcheck will not catch everything. For example, it will not stop you from using a value before checking the error, as long as you check the error later. I've personally broken things in production because of that corner case, despite (usually) being very careful about error handling. |
|