Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 73007
Collapse All | Expand All

(-)aMule-2.0.0rc7/src/utils/aLinkCreator/src/ed2khash.cpp (-1 / +1 lines)
Lines 83-89 Link Here
83
{
83
{
84
  // Open file and let wxFFile destructor close the file
84
  // Open file and let wxFFile destructor close the file
85
  // Closing it explicitly may crash on Win32 ...
85
  // Closing it explicitly may crash on Win32 ...
86
  wxFFile file(filename.GetFullPath(), wxT("rbS"));
86
  wxFFile file( (const wxChar*) filename.GetFullPath(),  (const char*) wxT("rbS"));
87
  if (! file.IsOpened())
87
  if (! file.IsOpened())
88
    {
88
    {
89
      wxLogError (_("Unable to open %s"),unicode2char(filename.GetFullPath()));
89
      wxLogError (_("Unable to open %s"),unicode2char(filename.GetFullPath()));
(-)aMule-2.0.0rc7/src/utils/aLinkCreator/src/md4.cpp (-1 / +1 lines)
Lines 336-342 Link Here
336
336
337
  // Open file and let wxFFile destructor close the file
337
  // Open file and let wxFFile destructor close the file
338
  // Closing it explicitly may crash on Win32 ...
338
  // Closing it explicitly may crash on Win32 ...
339
  wxFFile file(filename, wxT("rbS"));
339
  wxFFile file((const wxChar*) filename, (const char*) wxT("rbS"));
340
  if (! file.IsOpened())
340
  if (! file.IsOpened())
341
    {
341
    {
342
      return wxEmptyString;
342
      return wxEmptyString;

Return to bug 73007