Removes some warnings by adding missing returns

This commit is contained in:
Felipe Zimmerle
2015-08-11 10:22:46 -03:00
parent c5a4355348
commit fb161a69a9
8 changed files with 20 additions and 19 deletions

View File

@@ -52,7 +52,7 @@ char *parse_pm_content(const char *op_parm, unsigned short int op_len, const cha
return NULL;
}
while (offset < op_len && content[offset] == ' ' || content[offset] == '\t') {
while (offset < op_len && (content[offset] == ' ' || content[offset] == '\t')) {
offset++;
};
@@ -380,7 +380,7 @@ static int acmp_connect_fail_branches(ACMP *parser) {
std::vector<acmp_node_t *> arr2;
std::vector<acmp_node_t *> tmp;
parser->root_node->text = "";
parser->root_node->text = (char *)"";
parser->root_node->fail = parser->root_node;
@@ -496,7 +496,7 @@ if (parser->is_active != 0) return -1;
if (child == NULL) {
child = (acmp_node_t *) calloc(1, sizeof(acmp_node_t));
/* ENH: Check alloc succeded */
child->pattern = "";
child->pattern = (char *)"";
child->letter = letter;
child->depth = i;
child->text = (char *)calloc(1, strlen(pattern) + 2);

View File

@@ -59,19 +59,19 @@ documentation and/or software.
// F, G, H and I are basic MD5 functions.
inline MD5::uint4 MD5::F(uint4 x, uint4 y, uint4 z) {
return x&y | ~x&z;
return (x & y) | (~x & z);
}
inline MD5::uint4 MD5::G(uint4 x, uint4 y, uint4 z) {
return x&z | y&~z;
return (x & z) | (y & ~z);
}
inline MD5::uint4 MD5::H(uint4 x, uint4 y, uint4 z) {
return x^y^z;
return (x ^ y ^ z);
}
inline MD5::uint4 MD5::I(uint4 x, uint4 y, uint4 z) {
return y ^ (x | ~z);
return (y ^ (x | ~z));
}
// rotate_left rotates x left n bits.