Expand Minimize
This topic has not yet been rated - Rate this topic

C28106

Visual Studio 2012

Warning C28106: Variable already holds resource possibly causing leak

A variable that contains a resource is used in a context in which a new value can be placed in the variable. If this occurs, the resource can be lost and not properly freed, causing a resource leak.

The following code example generates this warning:

ExAcquireResourceLite(resource, true);
...
ExAcquireResourceLite(resource, true);

The following code example avoids this warning:

ExAcquireResourceLite(resource1, true);
...
ExAcquireResourceLite(resource2, true);
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.