labstack / echox

Echo cookbook and website
https://echo.labstack.com
MIT License
408 stars 285 forks source link

Fix segfault in example code #187

Closed chrisk314 closed 3 years ago

chrisk314 commented 3 years ago

This change fixes a segfault which occurs in the validation example code. When the validated struct contains no errors cv.validator.Struct(i) returns nil. Calling Error() on this nil return value was causing the segfault.

pafuent commented 3 years ago

Closing this as duplicate of #182