coverity: fixed missing break in switch

ulab-next-nosound
Laxmikant Rashinkar 10 years ago
parent 29b2e42279
commit ad4bea9a6e

@ -164,6 +164,7 @@ bitmap_decompress1(char *output, int width, int height, char *input, int size)
break;
case 8: /* Bicolor */
color1 = CVAL(input);
/* fall through is intentional */
case 3: /* Color */
color2 = CVAL(input);
break;
@ -435,6 +436,7 @@ bitmap_decompress2(char *output, int width, int height, char *input, int size)
case 8: /* Bicolor */
color1[EIK0] = CVAL(input);
color1[EIK1] = CVAL(input);
/* fall through is intentional */
case 3: /* Color */
color2[EIK0] = CVAL(input);
color2[EIK1] = CVAL(input);
@ -752,6 +754,7 @@ bitmap_decompress3(char *output, int width, int height, char *input, int size)
color1[0] = CVAL(input);
color1[1] = CVAL(input);
color1[2] = CVAL(input);
/* fall through is intentional */
case 3: /* Color */
color2[0] = CVAL(input);
color2[1] = CVAL(input);

@ -175,9 +175,9 @@ rdp_lic_process_demand(struct rdp_lic *self, struct stream *s)
g_memset(null_data, 0, sizeof(null_data));
rdp_lic_generate_keys(self, null_data, server_random, null_data);
#if 0
licence_size = 0; /* todo load_licence(&licence_data); */
#if 0
if (licence_size > 0)
{
/* Generate a signature for the HWID buffer */

Loading…
Cancel
Save