Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | "/bookmark add foo" crash - fix | Jan Hacker | 2014-08-17 | 1 | -4/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | A user providing an invalid JID when creating a new bookmark (like 'foo') would reproducibly crash/segfault profanity, as it insists on checking string length behind the @ of the JID. However, it could be NULL if the user accidentally omitted it. The patch avoids the crash by NULL-checking and prevents getting there in the first place by checking the argument to "add". Backtrace of unpatched profanity with above command: Program received signal EXC_BAD_ACCESS, Could not access memory. Reason: KERN_INVALID_ADDRESS at address: 0x0000000000000000 0x00007fff85699732 in strlen () (gdb) bt #0 0x00007fff85699732 in strlen () #1 0x00000001000965d2 in xmpp_strdup () #2 0x0000000100095d6d in xmpp_stanza_set_attribute () #3 0x0000000100011c5c in _send_bookmarks () #4 0x00000001000115a8 in _bookmark_add () #5 0x000000010003320d in cmd_bookmark () #6 0x000000010002a0f2 in cmd_execute () #7 0x0000000100003a1d in process_input () #8 0x00000001000037c7 in prof_run () #9 0x0000000100045032 in main () (gdb) | |||||
* | Show message when no group or empty roster on /who | James Booth | 2014-07-22 | 1 | -0/+8 | |
| | ||||||
* | Added _who_roster function | James Booth | 2014-07-22 | 1 | -166/+173 | |
| | ||||||
* | Added _who_room function | James Booth | 2014-07-22 | 1 | -80/+84 | |
| | ||||||
* | Show message when no contacts with presence for /who | James Booth | 2014-07-22 | 1 | -33/+87 | |
| | ||||||
* | Free resources on OTR shutdown | James Booth | 2014-06-26 | 1 | -0/+1 | |
| | ||||||
* | Added deallocation function for string prefs, added otr policy enum | James Booth | 2014-06-18 | 1 | -8/+12 | |
| | ||||||
* | Fixed memleaks with otr policy and autoaway options | James Booth | 2014-06-17 | 1 | -0/+1 | |
| | ||||||
* | Fixed compiler warning | James Booth | 2014-06-03 | 1 | -3/+0 | |
| | ||||||
* | Show info in chat and private chat windows | James Booth | 2014-06-03 | 1 | -15/+3 | |
| | ||||||
* | Show info in room for participant | James Booth | 2014-06-03 | 1 | -7/+2 | |
| | ||||||
* | Added settings to show message text in notifications | James Booth | 2014-05-24 | 1 | -0/+20 | |
| | ||||||
* | Added notification setting for typing in current window | James Booth | 2014-05-24 | 1 | -5/+15 | |
| | ||||||
* | Added settings for message notifications in current window | James Booth | 2014-05-24 | 1 | -13/+32 | |
| | ||||||
* | Added /notify room mention setting | James Booth | 2014-05-24 | 1 | -3/+6 | |
| | ||||||
* | Split regular and chat room notify settings | James Booth | 2014-05-24 | 1 | -1/+13 | |
| | ||||||
* | Added config.h to files checking for OTR support | James Booth | 2014-05-19 | 1 | -0/+2 | |
| | ||||||
* | Fixed OTR dependency when library not present, changed version to 0.4.2 | James Booth | 2014-05-19 | 1 | -0/+4 | |
| | ||||||
* | Implemented per contact OTR policy setting | James Booth | 2014-05-11 | 1 | -0/+4 | |
| | ||||||
* | Added /otr policy for contacts in account preferences | James Booth | 2014-05-11 | 1 | -11/+32 | |
| | ||||||
* | Added otr to /account clear properties | James Booth | 2014-05-11 | 1 | -0/+4 | |
| | ||||||
* | Moved OTR policy check to otr module | James Booth | 2014-05-11 | 1 | -1/+1 | |
| | ||||||
* | Added OTR policy account preference | James Booth | 2014-05-11 | 1 | -1/+2 | |
| | ||||||
* | Added autocompletion for /account set <account> otr <policy> | James Booth | 2014-05-11 | 1 | -0/+9 | |
| | ||||||
* | Added /prefs otr | James Booth | 2014-05-11 | 1 | -0/+4 | |
| | ||||||
* | Refactored bookmarks to use option parser, allow bookmarking rooms with ↵ | James Booth | 2014-05-10 | 1 | -46/+45 | |
| | | | | passwords | |||||
* | Added question answer authentication (libotr 3.2.x) | James Booth | 2014-04-30 | 1 | -0/+35 | |
| | ||||||
* | Added SMP secret authentication success message | James Booth | 2014-04-27 | 1 | -1/+0 | |
| | ||||||
* | Handle SMP secret response | James Booth | 2014-04-26 | 1 | -2/+2 | |
| | ||||||
* | Send SMP init message with /otr secret | James Booth | 2014-04-26 | 1 | -1/+17 | |
| | ||||||
* | Fixed cppcheck warnings | James Booth | 2014-04-26 | 1 | -4/+2 | |
| | ||||||
* | Allow /wins swap to move to empty position | James Booth | 2014-04-24 | 1 | -0/+2 | |
| | ||||||
* | Added command /wins swap | James Booth | 2014-04-24 | 1 | -0/+20 | |
| | ||||||
* | Merge remote-tracking branch 'lucian/master' | James Booth | 2014-04-22 | 1 | -1/+40 | |
|\ | ||||||
| * | Added opportunistic send functionality to cmd_msg | lightb | 2014-04-21 | 1 | -4/+19 | |
| | | | | | | | | | | | | | | | | If policy is set to 'opportunistic' then when the user executes cmd_msg it will append the otr whitespace tag to the message The other client should start AKE once it receives the message. TODO: Analyze incoming messages for whitespace tag | |||||
| * | Added some otr policy functionality, if policy is set to "always" | lightb | 2014-04-19 | 1 | -0/+4 | |
| | | | | | | | | | | | | if otr_is_secure fails, the message will not be sent. Changed both cmd_msg and cmd_execute_default | |||||
| * | Added /otr policy to commands (still need to add autocomplete stuff?) | lightb | 2014-04-19 | 1 | -1/+18 | |
| | | ||||||
| * | Added PREF_OTR_POLICY to preferences.c -> key -> otr.policy | lightb | 2014-04-19 | 1 | -0/+7 | |
| | | | | | | | | | | Added default value "manual" to PREF_OTR_POLICy -> preferences.c Modified help string to reflect otr_policy, started checks on cmd_otr | |||||
* | | Chat room windows now created only after successful join | James Booth | 2014-04-21 | 1 | -2/+3 | |
|/ | ||||||
* | Added XML Console window | James Booth | 2014-04-15 | 1 | -0/+12 | |
| | ||||||
* | Simplified parse_options to take first option as argument | James Booth | 2014-04-15 | 1 | -2/+2 | |
| | ||||||
* | Simplified parse_options to take gchar** | James Booth | 2014-04-15 | 1 | -8/+2 | |
| | ||||||
* | Clean up keys after using parse_options | James Booth | 2014-04-14 | 1 | -0/+2 | |
| | ||||||
* | Refactored cmd_join to use parse_options | James Booth | 2014-04-14 | 1 | -33/+15 | |
| | ||||||
* | Refactored cmd_connect to use parse_options | James Booth | 2014-04-14 | 1 | -72/+23 | |
| | ||||||
* | Added /log where command | James Booth | 2014-04-13 | 1 | -8/+14 | |
| | ||||||
* | Added /log shared setting | James Booth | 2014-04-13 | 1 | -0/+12 | |
| | | | | Issue #170 | |||||
* | Added /log rotate option | James Booth | 2014-04-13 | 1 | -2/+13 | |
| | ||||||
* | Added focus param to ui_room_join, not set for bookmark autojoin | James Booth | 2014-04-13 | 1 | -1/+1 | |
| | | | | Issue #194 | |||||
* | Revert "Added ui_already_connected" | James Booth | 2014-04-12 | 1 | -1/+1 | |
| | | | | This reverts commit e97ec56fce641554ff7aa2ff9f0583e1fb9fc364. |