Commit ac33a29f authored by runge's avatar runge
parents 61383c50 ef331826
......@@ -111,10 +111,9 @@ rfbClient* rfbGetClient(int bitsPerSample,int samplesPerPixel,
return NULL;
}
initAppData(&client->appData);
client->programName = NULL;
client->endianTest = 1;
client->programName="";
client->serverHost="";
client->serverHost=strdup("");
client->serverPort=5900;
client->CurrentKeyboardLedState = 0;
......@@ -265,6 +264,9 @@ rfbBool rfbInitClient(rfbClient* client,int* argc,char** argv) {
} else {
char* colon=strchr(argv[i],':');
if(client->serverHost)
free(client->serverHost);
if(colon) {
client->serverHost=strdup(argv[i]);
client->serverHost[(int)(colon-argv[i])]='\0';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment