Fixed issues found with clang-analyzer
This commit is contained in:
parent
62330ca669
commit
a3b531c036
@ -417,7 +417,10 @@ static void rdpsnd_recv_wave_pdu(rdpsndPlugin* rdpsnd, wStream* s)
|
||||
wave->wAudioLength = rdpsnd_compute_audio_time_length(format, size);
|
||||
|
||||
if (!rdpsnd->device)
|
||||
{
|
||||
free(wave);
|
||||
return;
|
||||
}
|
||||
|
||||
if (rdpsnd->device->WaveDecode)
|
||||
{
|
||||
|
@ -1032,7 +1032,10 @@ static UINT32 handle_Control(IRP* irp)
|
||||
sendBuffer = malloc(outBufferSize);
|
||||
|
||||
if (!sendBuffer)
|
||||
{
|
||||
free(recvBuffer);
|
||||
return smartcard_output_return(irp, SCARD_E_NO_MEMORY);
|
||||
}
|
||||
|
||||
status = SCardControl(hCard, (DWORD) controlCode, recvBuffer, (DWORD) recvLength,
|
||||
sendBuffer, (DWORD) outBufferSize, &nBytesReturned);
|
||||
|
@ -279,6 +279,7 @@ static int urbdrc_process_io_control(URBDRC_CHANNEL_CALLBACK* callback, BYTE* da
|
||||
|
||||
default:
|
||||
LLOGLN(urbdrc_debug, ("urbdrc_process_io_control: unknown IoControlCode 0x%X", IoControlCode));
|
||||
zfree(OutputBuffer);
|
||||
return -1;
|
||||
break;
|
||||
}
|
||||
@ -1718,6 +1719,7 @@ static int urb_control_feature_request(URBDRC_CHANNEL_CALLBACK * callback, BYTE
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "urb_control_feature_request: Error Command %x\n", command);
|
||||
zfree(out_data);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -485,6 +485,7 @@ static LIBUSB_DEVICE_DESCRIPTOR* udev_new_descript(LIBUSB_DEVICE* libusb_dev)
|
||||
if (ret < 0)
|
||||
{
|
||||
fprintf(stderr, "libusb_get_device_descriptor: ERROR!!\n");
|
||||
free(descriptor);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@ -1543,6 +1544,9 @@ static int func_cancel_xact_request(TRANSFER_REQUEST *request)
|
||||
{
|
||||
int status;
|
||||
|
||||
if (!request)
|
||||
return -1;
|
||||
|
||||
if ((!request->transfer) || (request->endpoint != request->transfer->endpoint) ||
|
||||
(request->transfer->endpoint == 0) || (request->submit != 1))
|
||||
{
|
||||
@ -1583,6 +1587,8 @@ cancel_retry:
|
||||
while (request_queue->has_next(request_queue))
|
||||
{
|
||||
request = request_queue->get_next(request_queue);
|
||||
if (!request)
|
||||
continue;
|
||||
|
||||
LLOGLN(libusb_debug, ("%s: CancelId:0x%x RequestId:0x%x endpoint 0x%x!!",
|
||||
__func__, RequestId, request->RequestId, request->endpoint));
|
||||
|
@ -832,6 +832,7 @@ void xf_SetWindowIcon(xfContext* xfc, xfWindow* window, rdpIcon* icon)
|
||||
PropModeReplace, (BYTE*) propdata, propsize);
|
||||
|
||||
XFlush(xfc->display);
|
||||
free(propdata);
|
||||
}
|
||||
|
||||
void xf_SetWindowRects(xfContext* xfc, xfWindow* window, RECTANGLE_16* rects, int nrects)
|
||||
|
@ -125,6 +125,9 @@ int freerdp_client_old_process_plugin(rdpSettings* settings, ADDIN_ARGV* args)
|
||||
}
|
||||
else if (strcmp(args->argv[0], "rdpdr") == 0)
|
||||
{
|
||||
if (args->argc < 2)
|
||||
return -1;
|
||||
|
||||
if ((strcmp(args->argv[1], "disk") == 0) ||
|
||||
(strcmp(args->argv[1], "drive") == 0))
|
||||
{
|
||||
@ -156,11 +159,17 @@ int freerdp_client_old_process_plugin(rdpSettings* settings, ADDIN_ARGV* args)
|
||||
}
|
||||
else if (strcmp(args->argv[0], "rdpsnd") == 0)
|
||||
{
|
||||
if (args->argc < 2)
|
||||
return -1;
|
||||
|
||||
freerdp_addin_replace_argument_value(args, args->argv[1], "sys", args->argv[1]);
|
||||
freerdp_client_add_static_channel(settings, args->argc, args->argv);
|
||||
}
|
||||
else if (strcmp(args->argv[0], "rail") == 0)
|
||||
{
|
||||
if (args->argc < 2)
|
||||
return -1;
|
||||
|
||||
settings->RemoteApplicationProgram = _strdup(args->argv[1]);
|
||||
}
|
||||
else
|
||||
|
@ -583,7 +583,7 @@ void CALLBACK rfx_process_message_tile_work_callback(PTP_CALLBACK_INSTANCE insta
|
||||
|
||||
static BOOL rfx_process_message_tileset(RFX_CONTEXT* context, RFX_MESSAGE* message, wStream* s)
|
||||
{
|
||||
int i;
|
||||
int i, close_cnt;
|
||||
int pos;
|
||||
BYTE quant;
|
||||
RFX_TILE* tile;
|
||||
@ -692,9 +692,12 @@ static BOOL rfx_process_message_tileset(RFX_CONTEXT* context, RFX_MESSAGE* messa
|
||||
free(work_objects);
|
||||
return FALSE;
|
||||
}
|
||||
ZeroMemory(work_objects, sizeof(PTP_WORK) * message->numTiles);
|
||||
ZeroMemory(params, sizeof(RFX_TILE_PROCESS_WORK_PARAM) * message->numTiles);
|
||||
}
|
||||
|
||||
/* tiles */
|
||||
close_cnt = 0;
|
||||
for (i = 0; i < message->numTiles; i++)
|
||||
{
|
||||
tile = message->tiles[i] = (RFX_TILE*) ObjectPool_Take(context->priv->TilePool);
|
||||
@ -760,6 +763,7 @@ static BOOL rfx_process_message_tileset(RFX_CONTEXT* context, RFX_MESSAGE* messa
|
||||
(void*) ¶ms[i], &context->priv->ThreadPoolEnv);
|
||||
|
||||
SubmitThreadpoolWork(work_objects[i]);
|
||||
close_cnt = i + 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -771,16 +775,18 @@ static BOOL rfx_process_message_tileset(RFX_CONTEXT* context, RFX_MESSAGE* messa
|
||||
|
||||
if (context->priv->UseThreads)
|
||||
{
|
||||
for (i = 0; i < message->numTiles; i++)
|
||||
for (i = 0; i < close_cnt; i++)
|
||||
{
|
||||
WaitForThreadpoolWorkCallbacks(work_objects[i], FALSE);
|
||||
CloseThreadpoolWork(work_objects[i]);
|
||||
}
|
||||
|
||||
free(work_objects);
|
||||
free(params);
|
||||
}
|
||||
|
||||
if (work_objects)
|
||||
free(work_objects);
|
||||
if (params)
|
||||
free(params);
|
||||
|
||||
for (i = 0; i < message->numTiles; i++)
|
||||
{
|
||||
tile = message->tiles[i];
|
||||
@ -1063,7 +1069,7 @@ void CALLBACK rfx_compose_message_tile_work_callback(PTP_CALLBACK_INSTANCE insta
|
||||
RFX_MESSAGE* rfx_encode_message(RFX_CONTEXT* context, const RFX_RECT* rects,
|
||||
int numRects, BYTE* data, int width, int height, int scanline)
|
||||
{
|
||||
int i;
|
||||
int i, close_cnt;
|
||||
int xIdx;
|
||||
int yIdx;
|
||||
int numTilesX;
|
||||
@ -1077,6 +1083,9 @@ RFX_MESSAGE* rfx_encode_message(RFX_CONTEXT* context, const RFX_RECT* rects,
|
||||
RFX_TILE_COMPOSE_WORK_PARAM* params = NULL;
|
||||
|
||||
message = (RFX_MESSAGE*) malloc(sizeof(RFX_MESSAGE));
|
||||
if (!message)
|
||||
return NULL;
|
||||
|
||||
ZeroMemory(message, sizeof(RFX_MESSAGE));
|
||||
|
||||
if (context->state == RFX_STATE_SEND_HEADERS)
|
||||
@ -1116,9 +1125,24 @@ RFX_MESSAGE* rfx_encode_message(RFX_CONTEXT* context, const RFX_RECT* rects,
|
||||
if (context->priv->UseThreads)
|
||||
{
|
||||
work_objects = (PTP_WORK*) malloc(sizeof(PTP_WORK) * message->numTiles);
|
||||
params = (RFX_TILE_COMPOSE_WORK_PARAM*) malloc(sizeof(RFX_TILE_COMPOSE_WORK_PARAM) * message->numTiles);
|
||||
if (!work_objects)
|
||||
{
|
||||
free(message);
|
||||
return NULL;
|
||||
}
|
||||
params = (RFX_TILE_COMPOSE_WORK_PARAM*)
|
||||
malloc(sizeof(RFX_TILE_COMPOSE_WORK_PARAM) * message->numTiles);
|
||||
if (!params)
|
||||
{
|
||||
free(message);
|
||||
free(work_objects);
|
||||
return NULL;
|
||||
}
|
||||
ZeroMemory(work_objects, sizeof(PTP_WORK) * message->numTiles);
|
||||
ZeroMemory(params, sizeof(RFX_TILE_COMPOSE_WORK_PARAM) * message->numTiles);
|
||||
}
|
||||
|
||||
close_cnt = 0;
|
||||
for (yIdx = 0; yIdx < numTilesY; yIdx++)
|
||||
{
|
||||
for (xIdx = 0; xIdx < numTilesX; xIdx++)
|
||||
@ -1164,6 +1188,7 @@ RFX_MESSAGE* rfx_encode_message(RFX_CONTEXT* context, const RFX_RECT* rects,
|
||||
(void*) ¶ms[i], &context->priv->ThreadPoolEnv);
|
||||
|
||||
SubmitThreadpoolWork(work_objects[i]);
|
||||
close_cnt = i + 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1174,11 +1199,11 @@ RFX_MESSAGE* rfx_encode_message(RFX_CONTEXT* context, const RFX_RECT* rects,
|
||||
|
||||
message->tilesDataSize = 0;
|
||||
|
||||
for (i = 0; i < message->numTiles; i++)
|
||||
for (i = 0; i < close_cnt; i++)
|
||||
{
|
||||
tile = message->tiles[i];
|
||||
|
||||
if (context->priv->UseThreads)
|
||||
if (context->priv->UseThreads && work_objects)
|
||||
{
|
||||
WaitForThreadpoolWorkCallbacks(work_objects[i], FALSE);
|
||||
CloseThreadpoolWork(work_objects[i]);
|
||||
@ -1187,11 +1212,11 @@ RFX_MESSAGE* rfx_encode_message(RFX_CONTEXT* context, const RFX_RECT* rects,
|
||||
message->tilesDataSize += rfx_tile_length(tile);
|
||||
}
|
||||
|
||||
if (context->priv->UseThreads)
|
||||
{
|
||||
if (work_objects)
|
||||
free(work_objects);
|
||||
|
||||
if (params)
|
||||
free(params);
|
||||
}
|
||||
|
||||
return message;
|
||||
}
|
||||
|
@ -365,6 +365,12 @@ BOOL http_response_parse_header(HttpResponse* http_response)
|
||||
char end_of_header_char;
|
||||
char c;
|
||||
|
||||
if (!http_response)
|
||||
return FALSE;
|
||||
|
||||
if (!http_response->lines)
|
||||
return FALSE;
|
||||
|
||||
if (!http_response_parse_header_status_line(http_response, http_response->lines[0]))
|
||||
return FALSE;
|
||||
|
||||
|
@ -399,6 +399,7 @@ BOOL TsProxyCreateTunnelReadResponse(rdpTsg* tsg, RPC_PDU* pdu)
|
||||
{
|
||||
fprintf(stderr, "Unexpected ComponentId: 0x%04X, Expected TS_GATEWAY_TRANSPORT\n",
|
||||
versionCaps->tsgHeader.ComponentId);
|
||||
free(packet);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@ -436,6 +437,7 @@ BOOL TsProxyCreateTunnelReadResponse(rdpTsg* tsg, RPC_PDU* pdu)
|
||||
{
|
||||
fprintf(stderr, "Unexpected PacketId: 0x%08X, Expected TSG_PACKET_TYPE_CAPS_RESPONSE "
|
||||
"or TSG_PACKET_TYPE_QUARENC_RESPONSE\n", packet->packetId);
|
||||
free(packet);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@ -565,7 +567,9 @@ BOOL TsProxyAuthorizeTunnelReadResponse(rdpTsg* tsg, RPC_PDU* pdu)
|
||||
|
||||
if ((packet->packetId != TSG_PACKET_TYPE_RESPONSE) || (SwitchValue != TSG_PACKET_TYPE_RESPONSE))
|
||||
{
|
||||
fprintf(stderr, "Unexpected PacketId: 0x%08X, Expected TSG_PACKET_TYPE_RESPONSE\n", packet->packetId);
|
||||
fprintf(stderr, "Unexpected PacketId: 0x%08X, Expected TSG_PACKET_TYPE_RESPONSE\n",
|
||||
packet->packetId);
|
||||
free(packet);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@ -580,6 +584,8 @@ BOOL TsProxyAuthorizeTunnelReadResponse(rdpTsg* tsg, RPC_PDU* pdu)
|
||||
{
|
||||
fprintf(stderr, "Unexpected Packet Response Flags: 0x%08X, Expected TSG_PACKET_TYPE_QUARREQUEST\n",
|
||||
packetResponse->flags);
|
||||
free(packet);
|
||||
free(packetResponse);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@ -715,7 +721,9 @@ BOOL TsProxyMakeTunnelCallReadResponse(rdpTsg* tsg, RPC_PDU* pdu)
|
||||
|
||||
if ((packet->packetId != TSG_PACKET_TYPE_MESSAGE_PACKET) || (SwitchValue != TSG_PACKET_TYPE_MESSAGE_PACKET))
|
||||
{
|
||||
fprintf(stderr, "Unexpected PacketId: 0x%08X, Expected TSG_PACKET_TYPE_MESSAGE_PACKET\n", packet->packetId);
|
||||
fprintf(stderr, "Unexpected PacketId: 0x%08X, Expected TSG_PACKET_TYPE_MESSAGE_PACKET\n",
|
||||
packet->packetId);
|
||||
free(packet);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@ -783,7 +791,9 @@ BOOL TsProxyMakeTunnelCallReadResponse(rdpTsg* tsg, RPC_PDU* pdu)
|
||||
break;
|
||||
|
||||
default:
|
||||
fprintf(stderr, "TsProxyMakeTunnelCallReadResponse: unexpected message type: %d\n", SwitchValue);
|
||||
fprintf(stderr, "TsProxyMakeTunnelCallReadResponse: unexpected message type: %d\n",
|
||||
SwitchValue);
|
||||
free(packet);
|
||||
return FALSE;
|
||||
break;
|
||||
}
|
||||
|
@ -279,7 +279,7 @@ static BOOL freerdp_listener_check_fds(freerdp_listener* instance)
|
||||
int i;
|
||||
void* sin_addr;
|
||||
int peer_sockfd;
|
||||
freerdp_peer* client;
|
||||
freerdp_peer* client = NULL;
|
||||
socklen_t peer_addr_size;
|
||||
struct sockaddr_storage peer_addr;
|
||||
rdpListener* listener = (rdpListener*) instance->listener;
|
||||
@ -306,7 +306,8 @@ static BOOL freerdp_listener_check_fds(freerdp_listener* instance)
|
||||
continue;
|
||||
#endif
|
||||
perror("accept");
|
||||
free(client);
|
||||
if (client)
|
||||
free(client);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -34,6 +34,13 @@ void er_read_length(wStream* s, int* length)
|
||||
|
||||
Stream_Read_UINT8(s, byte);
|
||||
|
||||
if (!length)
|
||||
return;
|
||||
|
||||
*length = 0;
|
||||
if (!s)
|
||||
return;
|
||||
|
||||
if (byte & 0x80)
|
||||
{
|
||||
byte &= ~(0x80);
|
||||
@ -236,7 +243,7 @@ int er_skip_sequence_tag(int length)
|
||||
|
||||
BOOL er_read_enumerated(wStream* s, BYTE* enumerated, BYTE count)
|
||||
{
|
||||
int length;
|
||||
int length = 0;
|
||||
|
||||
er_read_universal_tag(s, ER_TAG_ENUMERATED, FALSE);
|
||||
er_read_length(s, &length);
|
||||
@ -320,7 +327,7 @@ int er_skip_octet_string(int length)
|
||||
|
||||
BOOL er_read_BOOL(wStream* s, BOOL* value)
|
||||
{
|
||||
int length;
|
||||
int length = 0;
|
||||
BYTE v;
|
||||
|
||||
if (!er_read_universal_tag(s, ER_TAG_BOOLEAN, FALSE))
|
||||
@ -348,7 +355,7 @@ void er_write_BOOL(wStream* s, BOOL value)
|
||||
|
||||
BOOL er_read_integer(wStream* s, UINT32* value)
|
||||
{
|
||||
int length;
|
||||
int length = 0;
|
||||
|
||||
er_read_universal_tag(s, ER_TAG_INTEGER, FALSE);
|
||||
er_read_length(s, &length);
|
||||
|
@ -159,22 +159,23 @@ LPSTR CharUpperA(LPSTR lpsz)
|
||||
int i;
|
||||
int length;
|
||||
|
||||
length = strlen(lpsz);
|
||||
if (!lpsz)
|
||||
return NULL;
|
||||
|
||||
length = strlen(lpsz);
|
||||
if (length < 1)
|
||||
return (LPSTR) NULL;
|
||||
|
||||
if (length == 1)
|
||||
{
|
||||
LPSTR pc = NULL;
|
||||
char c = *lpsz;
|
||||
|
||||
if ((c >= 'a') && (c <= 'z'))
|
||||
c = c - 32;
|
||||
|
||||
*pc = c;
|
||||
*lpsz = c;
|
||||
|
||||
return pc;
|
||||
return lpsz;
|
||||
}
|
||||
|
||||
for (i = 0; i < length; i++)
|
||||
|
@ -205,7 +205,11 @@ HANDLE CreateFileA(LPCSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode,
|
||||
status = connect(pNamedPipe->clientfd, (struct sockaddr*) &s, sizeof(struct sockaddr_un));
|
||||
|
||||
if (status != 0)
|
||||
{
|
||||
close(pNamedPipe->clientfd);
|
||||
free(pNamedPipe);
|
||||
return INVALID_HANDLE_VALUE;
|
||||
}
|
||||
|
||||
return hNamedPipe;
|
||||
}
|
||||
|
@ -314,7 +314,7 @@ BOOL FilePatternMatchA(LPCSTR lpFileName, LPCSTR lpPattern)
|
||||
LPSTR lpY;
|
||||
size_t cchX;
|
||||
size_t cchY;
|
||||
LPSTR lpMatchEnd;
|
||||
LPSTR lpMatchEnd = NULL;
|
||||
LPSTR lpSubPattern;
|
||||
size_t cchSubPattern;
|
||||
LPSTR lpSubFileName;
|
||||
|
@ -287,6 +287,8 @@ char* GetCombinedPath(char* basePath, char* subPath)
|
||||
|
||||
length = basePathLength + subPathLength + 1;
|
||||
path = (char*) malloc(length + 1);
|
||||
if (!path)
|
||||
return NULL;
|
||||
|
||||
CopyMemory(path, basePath, basePathLength);
|
||||
path[basePathLength] = '\0';
|
||||
|
@ -183,6 +183,9 @@ RegVal* reg_load_value(Reg* reg, RegKey* key)
|
||||
|
||||
BOOL reg_load_has_next_line(Reg* reg)
|
||||
{
|
||||
if (!reg)
|
||||
return FALSE;
|
||||
|
||||
return (reg->next_line != NULL) ? 1 : 0;
|
||||
}
|
||||
|
||||
|
@ -112,6 +112,9 @@ PFORMAT_STRING NdrpComputeCount(PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMem
|
||||
break;
|
||||
}
|
||||
|
||||
if (!ptr)
|
||||
return pFormat;
|
||||
|
||||
switch (type)
|
||||
{
|
||||
case FC_LONG:
|
||||
|
@ -650,6 +650,7 @@ SECURITY_STATUS ntlm_read_AuthenticateMessage(NTLM_CONTEXT* context, PSecBuffer
|
||||
|
||||
message = &context->AUTHENTICATE_MESSAGE;
|
||||
ZeroMemory(message, sizeof(NTLM_AUTHENTICATE_MESSAGE));
|
||||
ZeroMemory(&response, sizeof(NTLMv2_RESPONSE));
|
||||
|
||||
s = Stream_New(buffer->pvBuffer, buffer->cbBuffer);
|
||||
|
||||
|
@ -53,6 +53,7 @@ HANDLE CreateSemaphoreW(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, LONG lIniti
|
||||
if (pipe(semaphore->pipe_fd) < 0)
|
||||
{
|
||||
fprintf(stderr, "CreateSemaphoreW: failed to create semaphore\n");
|
||||
free(semaphore);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@ -62,6 +63,7 @@ HANDLE CreateSemaphoreW(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, LONG lIniti
|
||||
{
|
||||
close(semaphore->pipe_fd[0]);
|
||||
close(semaphore->pipe_fd[1]);
|
||||
free(semaphore);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -53,14 +53,20 @@ HANDLE CreateWaitableTimerA(LPSECURITY_ATTRIBUTES lpTimerAttributes, BOOL bManua
|
||||
|
||||
#ifdef HAVE_TIMERFD_H
|
||||
timer->fd = timerfd_create(CLOCK_MONOTONIC, 0);
|
||||
|
||||
if (timer->fd <= 0)
|
||||
{
|
||||
free(timer);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
status = fcntl(timer->fd, F_SETFL, O_NONBLOCK);
|
||||
|
||||
if (status)
|
||||
{
|
||||
close(timer->fd);
|
||||
free(timer);
|
||||
return NULL;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -70,6 +70,9 @@ wReference* ReferenceTable_GetFreeEntry(wReferenceTable* referenceTable)
|
||||
|
||||
if (!found)
|
||||
{
|
||||
if (!referenceTable->size)
|
||||
return NULL;
|
||||
|
||||
referenceTable->size *= 2;
|
||||
referenceTable->array = (wReference*) realloc(referenceTable->array, sizeof(wReference) * referenceTable->size);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user