﻿# Logical Expressions in C, C\+\+, C\#, and Java\. Mistakes Made by Professionals

In programming, a logical expression is a language construct that is evaluated as true or false\. Many books that teach programming "from scratch" discuss possible operations on logical expressions familiar to every beginner\. In this article, I won't be talking about the AND operator having higher precedence than OR\. Instead, I will talk about common mistakes that programmers make in simple conditional expressions consisting of no more than three operators, and show how you can check your code using truth tables\. Mistakes described here are the ones made by the developers of such well\-known projects as FreeBSD, Microsoft ChakraCore, Mozilla Thunderbird, LibreOffice, and many others\.

![0390_BooleanExpressionPro/image1.png](https://import.viva64.com/docx/blog/0390_BooleanExpressionPro/image1.png)

## Introduction

I develop a static analyzer for C/C\+\+/C\# code, known as [PVS\-Studio](https://pvs-studio.com/en/pvs-studio/)\. My job involves dealing with both open\-source and proprietary code of various projects, and, as the result of this activity, I write a lot of articles regarding the [analysis of open\-source projects](https://pvs-studio.com/en/blog/inspections/), where I talk about errors and defects found in these projects\. With all that great amount of code that has been through our analyzer, we started to notice certain patterns of programming mistakes\. For example, my colleague Andrey Karpov once wrote an article about [the last\-line effect](https://pvs-studio.com/en/blog/posts/cpp/0260/) after he had gathered a large collection of examples of mistakes made in the last lines or blocks of similar looking code fragments\.

In the beginning of this year, I used the analyzer to scan some projects by large IT companies, which, following the modern trend, make their projects' sources publicly available under free licenses\. I started to notice that almost every project has errors in conditional expressions that deal with incorrect use of conditional operators\. Expressions themselves are quite simple and consist of just three operators:

* \!\= \|\| \!\=
* \=\= \|\| \!\=
* \=\= && \=\=
* \=\= && \!\=

In total, you can write 6 conditional expressions using these operators, but 4 of them are incorrect: two are always true or false; in two others, the result of the whole expression does not depend on the result of one of its subexpressions\.

To prove that a conditional expression is incorrect, I will construct a truth table for every example\. I will also give an example from real code for each case\. We will talk about the ternary operator _?:_ as well, whose precedence is almost the lowest, although, few programmers know about it\.

Since incorrect conditional expressions are found mostly in code that checks return values of various functions, comparing them with error codes, I will be using variable _err_ in synthetic examples below, while _code1_ and _code2_ will be used as constants, which are not equal\. The value _"other codes"_ will stand for any other constants that are not equal to _code1_ and _code2_\.

## Incorrect use of the \|\| operator

### Expression \!\= \|\| \!\=

The following is a synthetic example where the conditional expression will always evaluate to _true_:

```cpp
if ( err != code1 || err != code2)
{
  ....
}
```

This is the truth table for this code:

![0390_BooleanExpressionPro/image2.png](https://import.viva64.com/docx/blog/0390_BooleanExpressionPro/image2.png)

And here is a real example of this error from LibreOffice project\.

[V547](https://pvs-studio.com/en/docs/warnings/v547/) Expression is always true\. Probably the '&&' operator should be used here\. sbxmod\.cxx 1777

```cpp
enum SbxDataType {
  SbxEMPTY    =  0,
  SbxNULL     =  1,
  ....
};

void SbModule::GetCodeCompleteDataFromParse(
  CodeCompleteDataCache& aCache)
{
  ....
  if( (pSymDef->GetType() != SbxEMPTY) ||          // <=
      (pSymDef->GetType() != SbxNULL) )            // <=
    aCache.InsertGlobalVar( pSymDef->GetName(),
      pParser->aGblStrings.Find(pSymDef->GetTypeId()) );
  ....
}
```

### Expression \=\= \|\| \!\=

A synthetic example where the result of the whole expression does not depend on the result of its subexpression _err \=\= code1_:

```cpp
if ( err == code1 || err != code2)
{
  ....
}
```

Truth table:

![0390_BooleanExpressionPro/image3.png](https://import.viva64.com/docx/blog/0390_BooleanExpressionPro/image3.png)

A real example from FreeBSD project:

[V590](https://pvs-studio.com/en/docs/warnings/v590/) Consider inspecting the 'error \=\= 0 \|\| error \!\= \- 1' expression\. The expression is excessive or contains a misprint\. nd6\.c 2119

```cpp
int
nd6_output_ifp(....)
{
  ....
  /* Use the SEND socket */
  error = send_sendso_input_hook(m, ifp, SND_OUT,
      ip6len);
  /* -1 == no app on SEND socket */
  if (error == 0 || error != -1)           // <=
      return (error);
  ....
}
```

It's not much different from our synthetic example, is it?

## Incorrect use of the && operator

### Expression \=\= && \=\=

A synthetic example, where the result of the conditional expression will always be _false_:

```cpp
if ( err == code1 && err == code2)
{
  ....
}
```

Truth table:

![0390_BooleanExpressionPro/image4.png](https://import.viva64.com/docx/blog/0390_BooleanExpressionPro/image4.png)

A real example from SeriousEngine project\.

[V547](https://pvs-studio.com/en/docs/warnings/v547/) Expression is always false\. Probably the '\|\|' operator should be used here\. entity\.cpp 3537

```cpp
enum RenderType {
  ....
  RT_BRUSH       = 4,
  RT_FIELDBRUSH  = 8,
  ....
};

void
CEntity::DumpSync_t(CTStream &strm, INDEX iExtensiveSyncCheck)
{
  ....
  if( en_pciCollisionInfo == NULL) {
    strm.FPrintF_t("Collision info NULL\n");
  } else if (en_RenderType==RT_BRUSH &&       // <=
             en_RenderType==RT_FIELDBRUSH) {  // <=
    strm.FPrintF_t("Collision info: Brush entity\n");
  } else {
  ....
  }
  ....
}
```

### Expression \=\= && \!\=

A synthetic example where the result of the whole conditional expression does not depend on the result of its subexpression _err \!\= code2_:

```cpp
if ( err == code1 && err != code2)
{
  ....
}
```

Truth table:

![0390_BooleanExpressionPro/image5.png](https://import.viva64.com/docx/blog/0390_BooleanExpressionPro/image5.png)

A real example from ChakraCore project, a JavaScript\-engine for Microsoft Edge\.

[V590](https://pvs-studio.com/en/docs/warnings/v590/) Consider inspecting the 'sub\[i\] \!\= '\-' && sub\[i\] \=\= '/'' expression\. The expression is excessive or contains a misprint\. rl\.cpp 1388

```cpp
const char *
stristr
(
  const char * str,
  const char * sub
)
{
  ....
  for (i = 0; i < len; i++)
  {
    if (tolower(str[i]) != tolower(sub[i]))
    {
      if ((str[i] != '/' && str[i] != '-') ||
            (sub[i] != '-' && sub[i] == '/')) {              / <=
           // if the mismatch is not between '/' and '-'
           break;
      }
    }
  }
  ....
}
```

## Incorrect use of the ?: operator

[V502](https://pvs-studio.com/en/docs/warnings/v502/) Perhaps the '?:' operator works in a different way than it was expected\. The '?:' operator has a lower priority than the '\|' operator\. ata\-serverworks\.c 166

```cpp
static int
ata_serverworks_chipinit(device_t dev)
{
  ....
  pci_write_config(dev, 0x5a,
           (pci_read_config(dev, 0x5a, 1) & ~0x40) |
           (ctlr->chip->cfg1 == SWKS_100) ? 0x03 : 0x02, 1);
  }
  ....
}
```

Before we finish with this article, I'd like to say a few words about the ternary operator _?:_\. Its precedence is almost the lowest of all operators\. Only the assignment operator, the _throw_ operator, and the _comma_ operator have lower precedence\. The error from the code sample above was found in the kernel of FreeBSD project\. The authors used the ternary operator for selecting the required checkbox and for the sake of short, neat code\. However, bitwise _OR_ has higher precedence, so the conditional expression is evaluated in the wrong order\. I decided to include this error in the article because it is very common for the projects I have scanned\.

## Conclusion

The patterns of errors in conditional expressions, described in this article, can be very dangerous if you are not careful enough writing the code\. Despite the small number of operators, an incorrect conditional expression, as a whole, may be misinterpreted by the compiler\. Such code may look quite sensible and pass code review\. To secure yourself from these errors, use truth tables to check your expressions when in doubt, and also make sure you regularly scan your code with static analyzers\.