By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2409
Collapse All | Expand All

(-)a/kftpgrabber/src/engine/ftpdirectoryparser.cpp (+2 lines)
Lines 421-426 bool FtpDirectoryParser::parseUnixPermissions(const TQString &permissions, Direc Link Here
421
  if (permissions[9] == 't' || permissions[9] == 'T') p |= S_ISVTX;
421
  if (permissions[9] == 't' || permissions[9] == 'T') p |= S_ISVTX;
422
   
422
   
423
   entry.setPermissions(p);
423
   entry.setPermissions(p);
424
425
  return(p);
424
}
426
}
425
427
426
bool FtpDirectoryParser::parseLine(const TQString &line, DirectoryEntry &entry)
428
bool FtpDirectoryParser::parseLine(const TQString &line, DirectoryEntry &entry)
(-)a/kftpgrabber/src/misc/desencryptor.cpp (-4 / +4 lines)
Lines 65-72 void DESEncryptor::DESExec(const TQString &str, int mode) Link Here
65
  char *o_message = (char*) malloc(8);
65
  char *o_message = (char*) malloc(8);
66
  char *o_output = (char*) malloc(8);
66
  char *o_output = (char*) malloc(8);
67
  
67
  
68
  memset(o_message, 0, 9);
68
  memset(o_message, 0, sizeof o_message);
69
  memset(o_output, 0, 9);
69
  memset(o_output, 0, sizeof o_output);
70
  //out.resize(in.size() * 2);
70
  //out.resize(in.size() * 2);
71
  
71
  
72
  while (i < in.size()) {
72
  while (i < in.size()) {
Lines 79-86 void DESEncryptor::DESExec(const TQString &str, int mode) Link Here
79
    i += 8;
79
    i += 8;
80
    
80
    
81
    // Clear everything
81
    // Clear everything
82
    memset(o_message, 0, 9);
82
    memset(o_message, 0, sizeof o_message);
83
    memset(o_output, 0, 9);
83
    memset(o_output, 0, sizeof o_output);
84
  }
84
  }
85
  
85
  
86
  free(o_message);
86
  free(o_message);

Return to bug 2409