File tree 1 file changed +10
-1
lines changed
cpp/common/src/codingstandards/cpp
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -352,7 +352,15 @@ class RAIIStyleLock extends LockingOperation {
352
352
getTarget ( ) .getDeclaringType ( ) .hasQualifiedName ( "std" , "unique_lock" ) or
353
353
getTarget ( ) .getDeclaringType ( ) .hasQualifiedName ( "std" , "scoped_lock" )
354
354
) and
355
- lock = getArgument ( 0 ) .getAChild * ( )
355
+ (
356
+ lock = getArgument ( 0 ) .getAChild * ( )
357
+ or
358
+ this instanceof DestructorCall and
359
+ exists ( RAIIStyleLock constructor |
360
+ constructor = getQualifier ( ) .( VariableAccess ) .getTarget ( ) .getInitializer ( ) .getExpr ( ) and
361
+ lock = constructor .getArgument ( 0 ) .getAChild * ( )
362
+ )
363
+ )
356
364
}
357
365
358
366
/**
@@ -361,6 +369,7 @@ class RAIIStyleLock extends LockingOperation {
361
369
override predicate isLock ( ) {
362
370
not isLockingOperationWithinLockingOperation ( this ) and
363
371
this instanceof ConstructorCall and
372
+ lock = getArgument ( 0 ) .getAChild * ( ) and
364
373
// defer_locks don't cause a lock
365
374
not exists ( Expr exp |
366
375
exp = getArgument ( 1 ) and
You can’t perform that action at this time.
0 commit comments