ipkn / crow

Crow is very fast and easy to use C++ micro web framework (inspired by Python Flask)
BSD 3-Clause "New" or "Revised" License
7.47k stars 888 forks source link

stop method craches if server is not running #315

Open amirnik opened 6 years ago

amirnik commented 6 years ago

In cases where app was not launched successfully for example port being used, calling app.stop() method will crash.

simple to reproduce: crow::SimpleApp app; app.stop();

mrozigor commented 6 years ago

Fixed in https://github.com/ipkn/crow/pull/317.