about summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed limit on number of windows, WIPJames Booth2013-08-277-345/+284
|
* Added function to get next available window number, and testsJames Booth2013-08-273-0/+68
|
* Removed all freeing of ui_current_recipient, data is owned by windowsJames Booth2013-08-271-17/+0
|
* Fixed freeing recipient after /tinyJames Booth2013-08-271-3/+0
|
* Merge branch 'master' into windowsJames Booth2013-08-271-1/+1
|\
| * Fix quoted nicknames in /group addJames Booth2013-08-271-1/+1
| | | | | | | | fixes #233
* | Refactor _cmd_closeJames Booth2013-08-263-19/+42
| |
* | Removed whitespace in command.cJames Booth2013-08-261-1/+0
| |
* | Fixed indenting in ui/core.cJames Booth2013-08-261-1/+2
| |
* | Free windows on exitJames Booth2013-08-264-2/+13
| |
* | Moved static function in console.cJames Booth2013-08-261-76/+76
| |
* | Removed cons_create from console.cJames Booth2013-08-264-13/+2
| |
* | Use Jid struct to get barejid in subscriptionsJames Booth2013-08-261-22/+21
| |
* | Fixed freeing of recipient after message sentJames Booth2013-08-262-3/+0
| |
* | Merge branch 'master' into windowsJames Booth2013-08-2614-181/+122
|\|
| * Merge remote-tracking branch 'dmitry/fixes'James Booth2013-08-261-1/+1
| |\
| | * fixed crash because of incorrect string releasingDmitry Podgorny2013-08-261-1/+1
| | |
| * | removed strdup in autocomplete callsDmitry Podgorny2013-08-267-95/+95
| | |
| * | refactred autocomplete_removeDmitry Podgorny2013-08-261-19/+10
| | |
| * | refactored autocomplete_addDmitry Podgorny2013-08-262-34/+11
| | | | | | | | | | | | Now this function responsible for memory allocation
| * | remove octet_compareDmitry Podgorny2013-08-264-32/+5
| |/ | | | | | | strcmp provides the same functionality
* | Fix console references after merging masterJames Booth2013-08-251-1/+3
| |
* | Merge branch 'master' into windowsJames Booth2013-08-2528-276/+856
|\|
| * fixed memory leaks in various filesDmitry Podgorny2013-08-255-28/+59
| |
| * removed strdup from g_string_appendDmitry Podgorny2013-08-253-12/+12
| |
| * fixed indentingDmitry Podgorny2013-08-241-1/+1
| |
| * fixed memleak in _iq_handle_discoinfo_getDmitry Podgorny2013-08-241-0/+1
| |
| * small refactoring in statusbar.cDmitry Podgorny2013-08-241-5/+11
| |
| * tz should be cached in static variableDmitry Podgorny2013-08-241-4/+0
| |
| * avoid double allocaion of session_startedDmitry Podgorny2013-08-241-1/+0
| |
| * free titlebar_ac autocompleterDmitry Podgorny2013-08-241-0/+1
| |
| * Merge branch 'master' into nextdevJames Booth2013-08-191-2/+2
| |\
| * \ Merge branch 'master' into nextdevJames Booth2013-08-131-2/+2
| |\ \
| * \ \ Merge branch 'master' into nextdevJames Booth2013-08-054-6/+53
| |\ \ \
| * \ \ \ Merge remote-tracking branch 'dmitry/nextdev-patches' into nextdevJames Booth2013-08-0422-171/+211
| |\ \ \ \
| | * | | | use posix stat syscall for windowsDmitry Podgorny2013-08-041-6/+0
| | | | | |
| | * | | | removed assignment to NULL in _chat_session_freeDmitry Podgorny2013-08-031-6/+2
| | | | | |
| | * | | | replace struct stat and stat() for windowsDmitry Podgorny2013-08-031-0/+6
| | | | | |
| | * | | | fixed memory leaksDmitry Podgorny2013-08-035-39/+85
| | | | | | | | | | | | | | | | | | | | | | | | Also avoided several NULL pointer dereferences.
| | * | | | refactored loggingDmitry Podgorny2013-08-031-19/+8
| | | | | | | | | | | | | | | | | | | | | | | | Use ftell instead of stat syscall to increase portability.
| | * | | | most FREE_SET_NULL replaced with freeDmitry Podgorny2013-08-0311-85/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FREE_SET_NULL makes extra assignment of NULL for pointers in stack or dynamic memory that is going to be freed. FREE_SET_NULL is useful for pointers that can be used in future.
| | * | | | refactored mkdir_recursiveDmitry Podgorny2013-08-033-13/+35
| | | | | | | | | | | | | | | | | | | | | | | | Now this function returns result of operation. TRUE is success.
| | * | | | removed sizeof(char)Dmitry Podgorny2013-08-034-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | sizeof(char) == 1 according to standard
| * | | | | Merge branch 'master' into nextdevJames Booth2013-08-041-2/+4
| |\ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | Merge remote-tracking branch 'dmitry/memleaks' into nextdevJames Booth2013-07-313-54/+75
| |\ \ \ \ \
| | * | | | | separate glib allocator and stdlib malloc/freeDmitry Podgorny2013-07-311-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Memory allocated by glib should be freed by g_free. Probably g_free calls stdlib free, but in order to avoid portability issues better use g_free as described in glib documentation.
| | * | | | | rewritten FREE_SET_NULL and GFREE_SET_NULLDmitry Podgorny2013-07-311-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NULL is valid argument for free(). Construction do {} while (0) allows using FREE_SET_NULL as one token and force to put semicolon at the end.
| | * | | | | fixed several memory leaks in command.c and jid.cDmitry Podgorny2013-07-312-40/+63
| | | | | | |
| * | | | | | Merge branch 'master' into nextdevJames Booth2013-07-311-1/+6
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch 'master' into nextdevJames Booth2013-07-221-5/+1
| |\ \ \ \ \ \ \ | | | |/ / / / / | | |/| | | | |