Age | Commit message (Collapse) | Author | Files | Lines |
---|---|---|---|---|
2007-01-26 | The Expand call does not check for null termination of the URL strings | erik | 1 | -2/+4 |
that it is expanding. Since strlen() is used with the URLs after Expand is used, it is good idea to make sure that Expand terminates the strings. This commit changes that so that the URL strings are guaranteed to be terminated after expansion. | ||||
2007-01-26 | A couple of places where a string is overrun. This fixes both of them. | erik | 2 | -4/+5 |
2007-01-26 | Each file in this commit exhibit an example of what prevent calls | erik | 2 | -2/+2 |
'reverse inull'. All that means is that a pointer gets dereferenced. Then a pointer gets checked for validity before being dereferenced again. This almost always points to shenanigans. For example, the konsole.cpp file has this konsoleInit() call which passes in a const char** shell variable. Since it is a double pointer the programmer who wrote the code made the mistake of mixing the checking of the pointer and the pointer that points to the pointer. This commit attempts to correct that. Of course there are other instances of the same thing. But they all boil down to a small mistake which might have produced strange side effects. | ||||
2007-01-26 | Both files in this commit exhibit use after free errors. | erik | 2 | -4/+4 |
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! | ||||
2007-01-24 | There was quite a bit of deadwood in this file. I am removing it to make | erik | 1 | -65/+0 |
the file more readable (and smaller overall). | ||||
2007-01-24 | Each file in this commit has the issue where it is possible for code to | erik | 6 | -38/+51 |
overrun static buffers. This could lead to serious problems. Granted it is almost impossible to do that. But it isn't totally impossible. So this commit makes it impossible to overrun. | ||||
2007-01-24 | Each file in this commit has the issue where a function can return a | erik | 2 | -50/+49 |
negative result but the result is used in a context that can only be positive. | ||||
2007-01-24 | Each file in this commit has an instance where a pointer is checked at | erik | 6 | -68/+77 |
one point in the code and then not checked in another point in the code. If it needed to be checked once, it needs to be checked the other time. If not the application could segfault. | ||||
2007-01-24 | Eac one the files in this commit had an instance where a code path is | erik | 3 | -16/+2 |
never traversed because of conditionals operating on values that never change. | ||||
2007-01-24 | Every file in this commit has a memory leak of some kind or another. I think | erik | 9 | -157/+246 |
all of them are minor and should not effect properly running code. But if I were you I would give libstocks and the stockticker plugin in Today a wide berth. That library is atrocious. | ||||
2007-01-23 | A couple more return values that need to be checked. | erik | 1 | -2/+9 |
2007-01-22 | Each file in this commit had a problem where a function might return | erik | 3 | -5/+10 |
a null value for a pointer and that null value was not checked. | ||||
2007-01-22 | Every file in this commit makes a call to a function which returns a value. | erik | 12 | -89/+101 |
Each file also didn't check the return value. This commit changes it so that every single non-checked call in these files is checked. | ||||
2007-01-19 | core/opie-login/loginwindowimpl.cpp has a fix to properly free strings | erik | 1 | -0/+1 |
that were dup'ed. noncore/apps/opie-reader/Bkmks.cpp deletes a temporary pointer that was not being properly disposed of. | ||||
2007-01-19 | Every file in this commit has a change to check the return value of a call. | erik | 3 | -6/+13 |
2007-01-19 | Every single file in this commit had a memory leak where a resource is | erik | 7 | -16/+38 |
allocated in the constructor but not de-allocated in the destructor. This commit fixes that. | ||||
2007-01-19 | BUG: There are only 4095 items in the buffer that is zero'd out using 4096. | erik | 1 | -1/+1 |
FIX: Fix the number used in memset. | ||||
2007-01-14 | When selecting a time zone, warn the user if the time zone file in ↵ | paule | 1 | -26/+35 |
/usr/share/zoneinfo for the selected time zone is missing | ||||
2007-01-14 | Add setting to show date/time settings on every restart (useful on devices ↵ | paule | 2 | -3/+16 |
where the date/time slips or is reset when the device is reset) | ||||
2007-01-13 | Actually read the doctab enable/disable setting. | paule | 1 | -0/+7 |
Partially fixes bug #1618. | ||||
2007-01-13 | * Increase font size (fixes bug #1597) | paule | 3 | -16/+494 |
* Improve usability of snooze function (fixes bug #1598) * Fix stretched icon (fixes bug #1616) | ||||
2007-01-13 | Prompt user to save on closing a modified file; prompt user on Save As if ↵ | paule | 2 | -25/+116 |
specified file already exists; change tab to show filename when saving a new file | ||||
2007-01-13 | Improve layout of Highlight Modes tab so that it fits on QVGA screens, ↵ | paule | 1 | -29/+25 |
allowing the OK/Cancel buttons on the dialog to be shown. Fixes bug #1373. | ||||
2007-01-13 | Clear document modified flag on save | paule | 1 | -1/+6 |
2007-01-13 | Delete configuration dialog object on closing | paule | 1 | -1/+2 |
2007-01-13 | Add Edit menu with find, replace & go to line functions. Uses dialogs/code ↵ | paule | 2 | -8/+23 |
already provided by libkate. Fixes bug #1231. | ||||
2007-01-13 | Set sensible minimum width for Goto Line dialog | paule | 1 | -0/+3 |
2007-01-13 | Call qApp->processEvents() before deleting dialog objects to avoid crashes ↵ | paule | 1 | -0/+3 |
(Qt bug?) | ||||
2007-01-12 | This commit switches from using hardcoded ntp servers to using a pool ntp | erik | 1 | -3/+3 |
server. | ||||
2007-01-10 | opie-mediaplayer2: search for audio/x-ogg too - patch from OPIE #1530 | hrw | 1 | -1/+1 |
2007-01-10 | All of the files included have instances where an array is new'ed but | erik | 8 | -12/+12 |
the corresponding delete does not have the corresponding [] argument. | ||||
2007-01-10 | BUG: The case statement was using err to figure out what to say about | erik | 1 | -1/+1 |
why sendfile didn't work. Since err is only the return value of sendfile this meant that it never reported the right thing because it can only be -1 at this point. What the author probably wanted to do was look at errno since that is what the man page says will have the real error info. FIX: Switch the case statement to use errno. | ||||
2007-01-08 | patch from paul | llornkcor | 2 | -51/+67 |
2006-12-30 | Fix for bug# 0001553 Submited by Paul Eggleton | korovkin | 3 | -27/+506 |
avancedfm uses FileInfoDialog and QFileInfo to display the selected file information. | ||||
2006-11-10 | Files devicehandler.cpp and devicehandler.h moved from manager to | korovkin | 4 | -4/+4 |
library to be used by obex to load a list of saved receivers. | ||||
2006-07-14 | more htc universal stuff | llornkcor | 1 | -0/+14 |
2006-07-09 | initial commit to add video4linux camera app from qtopia 2, needs more work | llornkcor | 17 | -0/+3013 |
2006-07-07 | s/Resource/OResource/ | mickeyl | 1 | -1/+1 |
2006-07-07 | Fixed the typo in the Resource::loadImage function call. | korovkin | 1 | -4/+4 |
Reformatted setBluezStatus function. | ||||
2006-07-06 | Added connection to a HID device. | korovkin | 7 | -2/+158 |
2006-07-02 | Added OBEX receive functionality. | korovkin | 2 | -16/+42 |
2006-06-01 | add support for ipaq 2200 | mickeyl | 1 | -0/+4 |
2006-05-25 | g++ 4.1.1 fixes | mickeyl | 2 | -3/+3 |
2006-05-25 | g++ 4.1.1 fix | mickeyl | 2 | -2/+2 |
2006-05-25 | g++ 4.1.1 fixes | mickeyl | 1 | -5/+5 |
2006-05-25 | g++ 4.1.1 fix | mickeyl | 1 | -2/+2 |
2006-05-25 | g++ 4.1 fix | mickeyl | 1 | -1/+1 |
2006-05-16 | remove generated files | mickeyl | 4 | -428/+0 |
2006-05-14 | Script must be started after device is started up. | korovkin | 3 | -8/+36 |
We should wait for 1 second after device is brought up. Fixed an error in hcicongig hci0 up. | ||||
2006-05-13 | don't use hand cooked #ifdef versions for conditional compiling, this breaks OE | mickeyl | 1 | -5/+4 |
I added a numerical version code in OPIE_VERSION which you can use. fixed all tests in bluezapplet.cpp |