From 152a8fe978851aea8dac6ae5cb11f73540746b83 Mon Sep 17 00:00:00 2001 From: erik Date: Fri, 26 Jan 2007 20:18:07 +0000 Subject: Both files in this commit exhibit use after free errors. One of them was introduced in my memory leak fixing (whoops). I was freeing a structure of stock data before one last call to it. So switching the free to after that call fixed it. The kcheckers.cpp fix is one where the game board could be deleted and then a new one is not created because someone attempted to request a game board type that is not supported. This is fixed by using the default directive for one of the game board types in the switch statement. Which means it could default to Russian boards. Score one for the Russians! --- (limited to 'noncore') diff --git a/noncore/games/kcheckers/kcheckers.cpp b/noncore/games/kcheckers/kcheckers.cpp index a27dd18..433c68f 100644 --- a/noncore/games/kcheckers/kcheckers.cpp +++ b/noncore/games/kcheckers/kcheckers.cpp @@ -430,6 +430,7 @@ void KCheckers::newGame() break; case RUSSIAN: + default: game=new RCheckers(skill); CHECK_PTR(game); } diff --git a/noncore/todayplugins/stockticker/libstocks/currency.c b/noncore/todayplugins/stockticker/libstocks/currency.c index e0090e2..82cd654 100644 --- a/noncore/todayplugins/stockticker/libstocks/currency.c +++ b/noncore/todayplugins/stockticker/libstocks/currency.c @@ -56,12 +56,11 @@ libstocks_return_code get_currency_exchange(char *from, if (error) { *exchange = 0; - return(error); + return error; } - free_stocks(data); - *exchange = data->CurrentPrice; - return(error); + free_stocks(data); + return error; } -- cgit v0.9.0.2