Skip to content

Commit 48f26ca

Browse files
committed
Fix crash on macOS caused by leftover call to gethostname().
1 parent fc45a16 commit 48f26ca

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

include/cddb/cddbremote.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* fre:ac - free audio converter
2-
* Copyright (C) 2001-2020 Robert Kausch <robert.kausch@freac.org>
2+
* Copyright (C) 2001-2025 Robert Kausch <robert.kausch@freac.org>
33
*
44
* This program is free software; you can redistribute it and/or
55
* modify it under the terms of the GNU General Public License as
@@ -25,7 +25,6 @@ namespace freac
2525
private:
2626
Bool connected;
2727

28-
Buffer<char> hostNameBuffer;
2928
Buffer<UnsignedByte> httpResultBuffer;
3029

3130
Array<CDDBInfo> readEntries;

src/cddb/cddbremote.cpp

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* fre:ac - free audio converter
2-
* Copyright (C) 2001-2023 Robert Kausch <robert.kausch@freac.org>
2+
* Copyright (C) 2001-2025 Robert Kausch <robert.kausch@freac.org>
33
*
44
* This program is free software; you can redistribute it and/or
55
* modify it under the terms of the GNU General Public License as
@@ -19,12 +19,6 @@
1919
#include <freac.h>
2020
#include <config.h>
2121

22-
#ifdef __WIN32__
23-
# include <winsock2.h>
24-
#else
25-
# include <unistd.h>
26-
#endif
27-
2822
using namespace BoCA;
2923

3024
freac::CDDBRemote::CDDBRemote()
@@ -189,8 +183,6 @@ Bool freac::CDDBRemote::ConnectToServer()
189183
SendCommand(NIL);
190184
SendCommand("proto 6");
191185

192-
gethostname(hostNameBuffer, hostNameBuffer.Size());
193-
194186
SendCommand(String("cddb hello user host ").Append(freac::appName).Append(" ").Append(freac::cddbVersion));
195187

196188
return True;

0 commit comments

Comments
 (0)