Changeset c788e15
- Timestamp:
- 2015-10-08T08:38:47Z (9 years ago)
- Branches:
- master
- Children:
- e1bea35
- Parents:
- 58b63de6
- git-author:
- dequis <dx@…> (05-10-15 04:20:07)
- git-committer:
- dequis <dx@…> (08-10-15 08:38:47)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_commands.c
r58b63de6 rc788e15 80 80 81 81 /* sanity checks */ 82 if (part != 3 || i != (len + 1) || strcmp(parts[0], parts[1]) != 0) {82 if (part != 3 || i != (len + 1) || (parts[0][0] && strcmp(parts[0], parts[1]) != 0)) { 83 83 g_free(decoded); 84 84 return FALSE; 85 85 } else { 86 *user = g_strdup(parts[ 0]);86 *user = g_strdup(parts[1]); 87 87 *pass = g_strdup(parts[2]); 88 88 g_free(decoded);
Note: See TracChangeset
for help on using the changeset viewer.