SlideShare a Scribd company logo
Rechecking SharpDevelop: Any New Bugs?
Author: Sergey Khrenov
Date: 30.01.2017
PVS-Studio analyzer is continuously improving, and the C#-code analysis module is developing most
actively: ninety new diagnostic rules were added in 2016. However, the best way to estimate the
analyzer's efficiency is to look at the bugs it can catch. It's always interesting, as well as useful, to do
recurring checks of large open-source projects at certain intervals and compare their results. Today I will
talk about the results of the second analysis of SharpDevelop project.
Introduction
The previous article about the analysis results for SharpDevelop was written by Andrey Karpov in
November 2015. We were only going through the testing stage of our new C# analyzer then and were
preparing for its first release. However, with just the beta version on hand, Andrey successfully checked
SharpDeveloper and found a few interesting bugs there. After that, SharpDevelop was "laid on the shelf"
to be used with a number of other projects solely within our team for testing new diagnostics. Now the
time has come to check SharpDevelop once again but with the more "brawny" version, PVS-Studio 6.12.
I downloaded the latest version of SharpDevelop's source code from GitHub. The project contains about
one million lines of code in C#. At the end of the analysis, PVS-Studio output 809 warnings: 74 first-level,
508 second-level, and 227 third-level messages:
I will skip the Low-level warnings because there is a high rate of false positives among those. About 40%
of the Medium- and High-level warnings (582 in total) were found to be genuine errors or highly
suspicious constructs, which corresponds to 233 warnings. In other words, PVS-Studio found an average
of 0.23 errors per 1000 lines of code. This rate indicates a very high quality of SharpDevelop project's
code. Many of the other projects show much worse results.
The new check revealed some of the bugs found and described by Andrey in his previous article, but
most of the errors are new. The most interesting ones are discussed below.
Analysis results
Canonical Copy-Paste bug
This error deserves its own standard in the International Bureau of Weights and Measures. It is also a
vivid example of how useful static analysis is and how dangerous Copy-Paste can be.
PVS-Studio diagnostic message: V3102 Suspicious access to element of 'method.SequencePoints' object
by a constant index inside a loop. CodeCoverageMethodTreeNode.cs 52
public override void ActivateItem()
{
if (method != null && method.SequencePoints.Count > 0) {
CodeCoverageSequencePoint firstSequencePoint =
method.SequencePoints[0];
....
for (int i = 1; i < method.SequencePoints.Count; ++i) {
CodeCoverageSequencePoint sequencePoint =
method.SequencePoints[0]; // <=
....
}
....
}
....
}
The zero-index element of the collection is accessed at each iteration of the for loop. I included the code
fragment immediately following the condition of the if statement on purpose to show where the line
used in the loop body was copied from. The programmer changed the variable name firstSequencePoint
to sequencePoint but forgot to change the expression indexing into the elements. This is what the fixed
version of the construct looks like:
public override void ActivateItem()
{
if (method != null && method.SequencePoints.Count > 0) {
CodeCoverageSequencePoint firstSequencePoint =
method.SequencePoints[0];
....
for (int i = 1; i < method.SequencePoints.Count; ++i) {
CodeCoverageSequencePoint sequencePoint =
method.SequencePoints[i];
....
}
....
}
....
}
"Find the 10 differences", or another Copy-Paste
PVS-Studio diagnostic message: V3021 There are two 'if' statements with identical conditional
expressions. The first 'if' statement contains method return. This means that the second 'if' statement is
senseless NamespaceTreeNode.cs 87
public int Compare(SharpTreeNode x, SharpTreeNode y)
{
....
if (typeNameComparison == 0) {
if (x.Text.ToString().Length < y.Text.ToString().Length) // <=
return -1;
if (x.Text.ToString().Length < y.Text.ToString().Length) // <=
return 1;
}
....
}
Both if blocks use the same condition. I can't say for sure what exactly the correct version of the code
should look like in this case; it has to be decided by the program author.
Late null check
PVS-Studio diagnostic message: V3095 The 'position' object was used before it was verified against null.
Check lines: 204, 206. Task.cs 204
public void JumpToPosition()
{
if (hasLocation && !position.IsDeleted) // <=
....
else if (position != null)
....
}
The position variable is used without testing it for null. The check is done in another condition, in the
else block. This is what the fixed version could look like:
public void JumpToPosition()
{
if (hasLocation && position != null && !position.IsDeleted)
....
else if (position != null)
....
}
Skipped null check
PVS-Studio diagnostic message: V3125 The 'mainAssemblyList' object was used after it was verified
against null. Check lines: 304, 291. ClassBrowserPad.cs 304
void UpdateActiveWorkspace()
{
var mainAssemblyList = SD.ClassBrowser.MainAssemblyList;
if ((mainAssemblyList != null) && (activeWorkspace != null)) {
....
}
....
mainAssemblyList.Assemblies.Clear(); // <=
....
}
The mainAssemblyList variable is used without a prior null check, while such a check can be found in
another statement in this fragment. The fixed code:
void UpdateActiveWorkspace()
{
var mainAssemblyList = SD.ClassBrowser.MainAssemblyList;
if ((mainAssemblyList != null) && (activeWorkspace != null)) {
....
}
....
if (mainAssemblyList != null) {
mainAssemblyList.Assemblies.Clear();
}
....
}
Unexpected sorting result
PVS-Studio diagnostic message: V3078 Original sorting order will be lost after repetitive call to
'OrderBy' method. Use 'ThenBy' method to preserve the original sorting.
CodeCoverageMethodElement.cs 124
void Init()
{
....
this.SequencePoints.OrderBy(item => item.Line)
.OrderBy(item => item.Column); // <=
}
This code will sort the SequencePoints collection only by the Column field, which doesn't seem to be the
desired result. The problem with this code is that the second call to the OrderBy method will sort the
collection without taking into account the results of the previous sort. To fix this issue, method ThenBy
must be used instead of the second call to OrderBy:
void Init()
{
....
this.SequencePoints.OrderBy(item => item.Line)
.ThenBy(item => item.Column);
}
Possible division by zero
PVS-Studio diagnostic message: V3064 Potential division by zero. Consider inspecting denominator
'workAmount'. XamlSymbolSearch.cs 60
public XamlSymbolSearch(IProject project, ISymbol entity)
{
....
interestingFileNames = new List<FileName>();
....
foreach (var item in ....)
interestingFileNames.Add(item.FileName);
....
workAmount = interestingFileNames.Count;
workAmountInverse = 1.0 / workAmount; // <=
}
If the interestingFileNames collection is found to be empty, a division by zero will occur. I can't suggest a
ready solution for this code, but in any case, the authors need to improve the algorithm computing the
value of the workAmountInverse variable when the value of the workAmount variable is zero.
Repeated assignment
PVS-Studio diagnostic message: V3008 The 'ignoreDialogIdSelectedInTextEditor' variable is assigned
values twice successively. Perhaps this is a mistake. Check lines: 204, 201. WixDialogDesigner.cs 204
void OpenDesigner()
{
try {
ignoreDialogIdSelectedInTextEditor = true; // <=
WorkbenchWindow.ActiveViewContent = this;
} finally {
ignoreDialogIdSelectedInTextEditor = false; // <=
}
}
The ignoreDialogIdSelectedInTextEditor variable will be assigned with the value false regardless of the
result of executing the try block. Let's take a closer look at the variable declarations to make sure there
are no "pitfalls" there. This is the declaration of ignoreDialogIdSelectedInTextEditor:
bool ignoreDialogIdSelectedInTextEditor;
And here are the declarations of IWorkbenchWindow and ActiveViewContent:
public IWorkbenchWindow WorkbenchWindow {
get { return workbenchWindow; }
}
IViewContent ActiveViewContent {
get;
set;
}
As you can see, there are no legitimate reasons for assigning another value to the
ignoreDialogIdSelectedInTextEditor variable. Perhaps the correct version of this construct should use the
catch keyword instead of finally:
void OpenDesigner()
{
try {
ignoreDialogIdSelectedInTextEditor = true;
WorkbenchWindow.ActiveViewContent = this;
} catch {
ignoreDialogIdSelectedInTextEditor = false;
}
}
Incorrect search of a substring
PVS-Studio diagnostic message: V3053 An excessive expression. Examine the substrings '/debug' and
'/debugport'. NDebugger.cs 287
public bool IsKernelDebuggerEnabled {
get {
....
if (systemStartOptions.Contains("/debug") ||
systemStartOptions.Contains("/crashdebug") ||
systemStartOptions.Contains("/debugport") || // <=
systemStartOptions.Contains("/baudrate")) {
return true;
}
....
}
}
This code uses a serial search looking for the substring "/debug" or "/debugport" in the
systemStartOptions string. The problem with this fragment is that the "/debug" string is itself a substring
of "/debugport", so finding "/debug" makes further search of "/debugport" meaningless. It's not a bug,
but it won't harm to optimize the code:
public bool IsKernelDebuggerEnabled {
get {
....
if (systemStartOptions.Contains("/debug") ||
systemStartOptions.Contains("/crashdebug") ||
systemStartOptions.Contains("/baudrate")) {
return true;
}
....
}
}
Exception-handling error
PVS-Studio diagnostic message: V3052 The original exception object 'ex' was swallowed. Stack of
original exception could be lost. ReferenceFolderNodeCommands.cs 130
DiscoveryClientProtocol DiscoverWebServices(....)
{
try {
....
} catch (WebException ex) {
if (....) {
....
} else {
throw ex; // <=
}
}
....
}
Executing the throw ex call will result in overwriting the stack of the original exception, as the
intercepted exception will be generated anew. This is the fixed version:
DiscoveryClientProtocol DiscoverWebServices(....)
{
try {
....
} catch (WebException ex) {
if (....) {
....
} else {
throw;
}
}
....
}
Using an uninitialized field in a class constructor
PVS-Studio diagnostic message: V3128 The 'contentPanel' field is used before it is initialized in
constructor. SearchResultsPad.cs 66
Grid contentPanel;
public SearchResultsPad()
{
....
defaultToolbarItems = ToolBarService
.CreateToolBarItems(contentPanel, ....); // <=
....
contentPanel = new Grid {....};
....
}
The contentPanel field is passed as one of the arguments to the CreateToolBarItems method in the
constructor of the SearchResultsPad class. However, this field is not initialized until it has been used. It's
not necessarily an error, given that the possibility of the contentPanel variable with the value of null is
taken into account in the body of the CreateToolBarItems method and further on in the stack. This code
still looks very suspicious and needs to be examined by the authors.
As I have already said, this article discusses far not all the bugs found by PVS-Studio in this project but
only those that seemed interesting to me. The project authors are welcome to contact us to get a
temporary license key for a more thorough analysis of their code.
Conclusion
PVS-Studio did well again and revealed new interesting bugs during the second check of SharpDevelop
project. It means the analyzer knows how to do its job and can help make the world a bit better.
Remember that you, too, can join us at any time by taking the opportunity of checking your own
projects with the free version of PVS-Studio static analyzer.
You can download PVS-Studio at http://www.viva64.com/en/pvs-studio/
Please email us if you have any questions regarding the purchase of a commercial license. You can also
contact us to ask for a temporary license for deeper exploration of PVS-Studio without the limitations of
the demo version.

More Related Content

PDF
Reanalyzing the Notepad++ project
PPT
JMockit Framework Overview
PDF
Checking the Source Code of FlashDevelop with PVS-Studio
PDF
Checking Clang 11 with PVS-Studio
PPTX
Mockito intro
PDF
GMock framework
PDF
Checking VirtualDub
PDF
Date Processing Attracts Bugs or 77 Defects in Qt 6
Reanalyzing the Notepad++ project
JMockit Framework Overview
Checking the Source Code of FlashDevelop with PVS-Studio
Checking Clang 11 with PVS-Studio
Mockito intro
GMock framework
Checking VirtualDub
Date Processing Attracts Bugs or 77 Defects in Qt 6

What's hot (20)

PDF
Mocking in Java with Mockito
PDF
Rechecking TortoiseSVN with the PVS-Studio Code Analyzer
PDF
A fresh eye on Oracle VM VirtualBox
PDF
Linux version of PVS-Studio couldn't help checking CodeLite
PDF
Checking WinMerge with PVS-Studio for the second time
PDF
Analyzing the Blender project with PVS-Studio
PDF
Documenting Bugs in Doxygen
PDF
Checking the code of Valgrind dynamic analyzer by a static analyzer
DOCX
Algoritmos sujei
ODP
Mastering Mock Objects - Advanced Unit Testing for Java
PDF
Checking the Cross-Platform Framework Cocos2d-x
PDF
Introduction to web programming for java and c# programmers by @drpicox
PDF
PVS-Studio vs Chromium - Continuation
PPT
Mockito with a hint of PowerMock
PDF
Analysis of Microsoft Code Contracts
PDF
Stop Making Excuses and Start Testing Your JavaScript
DOCX
Simulado java se 7 programmer
PPTX
Mock your way with Mockito
PDF
Top 10 C# projects errors found in 2016
PDF
The Little Unicorn That Could
Mocking in Java with Mockito
Rechecking TortoiseSVN with the PVS-Studio Code Analyzer
A fresh eye on Oracle VM VirtualBox
Linux version of PVS-Studio couldn't help checking CodeLite
Checking WinMerge with PVS-Studio for the second time
Analyzing the Blender project with PVS-Studio
Documenting Bugs in Doxygen
Checking the code of Valgrind dynamic analyzer by a static analyzer
Algoritmos sujei
Mastering Mock Objects - Advanced Unit Testing for Java
Checking the Cross-Platform Framework Cocos2d-x
Introduction to web programming for java and c# programmers by @drpicox
PVS-Studio vs Chromium - Continuation
Mockito with a hint of PowerMock
Analysis of Microsoft Code Contracts
Stop Making Excuses and Start Testing Your JavaScript
Simulado java se 7 programmer
Mock your way with Mockito
Top 10 C# projects errors found in 2016
The Little Unicorn That Could
Ad

Viewers also liked (10)

PDF
How to capture a variable in C# and not to shoot yourself in the foot
PPT
1st European Scholar TimeBanking Association Logo Contest
PPTX
Esperanto, Loglan and Dothraki: Why do people construct new languages?
PPTX
Nami ppt eng v3.3.1
PPSX
Bezpieczenstwo w czasie_ferii(5)
PPTX
Why, How, and WIIFM - Sensible Social Media
PDF
Metaprogramming with javascript
PPS
Ольга Нерода: Тренды в дизайне Email-рассылок
PPTX
Android
DOCX
театр
How to capture a variable in C# and not to shoot yourself in the foot
1st European Scholar TimeBanking Association Logo Contest
Esperanto, Loglan and Dothraki: Why do people construct new languages?
Nami ppt eng v3.3.1
Bezpieczenstwo w czasie_ferii(5)
Why, How, and WIIFM - Sensible Social Media
Metaprogramming with javascript
Ольга Нерода: Тренды в дизайне Email-рассылок
Android
театр
Ad

Similar to Rechecking SharpDevelop: Any New Bugs? (20)

PDF
The First C# Project Analyzed
PDF
Comparing the general static analysis in Visual Studio 2010 and PVS-Studio by...
PDF
Comparing the general static analysis in Visual Studio 2010 and PVS-Studio by...
PDF
Accord.Net: Looking for a Bug that Could Help Machines Conquer Humankind
PDF
Source code of WPF samples by Microsoft was checked
PDF
Microsoft opened the source code of Xamarin.Forms. We couldn't miss a chance ...
PDF
Re-checking the ReactOS project - a large report
PDF
Looking for Bugs in MonoDevelop
DOCX
Comparing PVS-Studio for C# and a built-in Visual Studio analyzer, using the ...
PDF
Of complicacy of programming, or won't C# save us?
PDF
How to make fewer errors at the stage of code writing. Part N4.
PDF
Why Windows 8 drivers are buggy
PDF
Still Comparing "this" Pointer to Null?
PDF
Comparing the general static analysis in Visual Studio 2010 and PVS-Studio by...
PDF
A Slipshod Check of the Visual C++ 2013 Library (update 3)
PDF
We Continue Exploring Tizen: C# Components Proved to be of High Quality
PDF
LibRaw, Coverity SCAN, PVS-Studio
PDF
Intel IPP Samples for Windows - error correction
PDF
Intel IPP Samples for Windows - error correction
PDF
Analyzing ReactOS One More Time
The First C# Project Analyzed
Comparing the general static analysis in Visual Studio 2010 and PVS-Studio by...
Comparing the general static analysis in Visual Studio 2010 and PVS-Studio by...
Accord.Net: Looking for a Bug that Could Help Machines Conquer Humankind
Source code of WPF samples by Microsoft was checked
Microsoft opened the source code of Xamarin.Forms. We couldn't miss a chance ...
Re-checking the ReactOS project - a large report
Looking for Bugs in MonoDevelop
Comparing PVS-Studio for C# and a built-in Visual Studio analyzer, using the ...
Of complicacy of programming, or won't C# save us?
How to make fewer errors at the stage of code writing. Part N4.
Why Windows 8 drivers are buggy
Still Comparing "this" Pointer to Null?
Comparing the general static analysis in Visual Studio 2010 and PVS-Studio by...
A Slipshod Check of the Visual C++ 2013 Library (update 3)
We Continue Exploring Tizen: C# Components Proved to be of High Quality
LibRaw, Coverity SCAN, PVS-Studio
Intel IPP Samples for Windows - error correction
Intel IPP Samples for Windows - error correction
Analyzing ReactOS One More Time

Recently uploaded (20)

PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
Transform Your Business with a Software ERP System
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPTX
L1 - Introduction to python Backend.pptx
PPTX
history of c programming in notes for students .pptx
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PPTX
Essential Infomation Tech presentation.pptx
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
System and Network Administraation Chapter 3
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Nekopoi APK 2025 free lastest update
PDF
top salesforce developer skills in 2025.pdf
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Odoo POS Development Services by CandidRoot Solutions
Transform Your Business with a Software ERP System
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
L1 - Introduction to python Backend.pptx
history of c programming in notes for students .pptx
VVF-Customer-Presentation2025-Ver1.9.pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Essential Infomation Tech presentation.pptx
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
System and Network Administraation Chapter 3
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Reimagine Home Health with the Power of Agentic AI​
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Nekopoi APK 2025 free lastest update
top salesforce developer skills in 2025.pdf
2025 Textile ERP Trends: SAP, Odoo & Oracle
Design an Analysis of Algorithms II-SECS-1021-03
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...

Rechecking SharpDevelop: Any New Bugs?

  • 1. Rechecking SharpDevelop: Any New Bugs? Author: Sergey Khrenov Date: 30.01.2017 PVS-Studio analyzer is continuously improving, and the C#-code analysis module is developing most actively: ninety new diagnostic rules were added in 2016. However, the best way to estimate the analyzer's efficiency is to look at the bugs it can catch. It's always interesting, as well as useful, to do recurring checks of large open-source projects at certain intervals and compare their results. Today I will talk about the results of the second analysis of SharpDevelop project. Introduction The previous article about the analysis results for SharpDevelop was written by Andrey Karpov in November 2015. We were only going through the testing stage of our new C# analyzer then and were preparing for its first release. However, with just the beta version on hand, Andrey successfully checked SharpDeveloper and found a few interesting bugs there. After that, SharpDevelop was "laid on the shelf" to be used with a number of other projects solely within our team for testing new diagnostics. Now the time has come to check SharpDevelop once again but with the more "brawny" version, PVS-Studio 6.12. I downloaded the latest version of SharpDevelop's source code from GitHub. The project contains about one million lines of code in C#. At the end of the analysis, PVS-Studio output 809 warnings: 74 first-level, 508 second-level, and 227 third-level messages:
  • 2. I will skip the Low-level warnings because there is a high rate of false positives among those. About 40% of the Medium- and High-level warnings (582 in total) were found to be genuine errors or highly suspicious constructs, which corresponds to 233 warnings. In other words, PVS-Studio found an average of 0.23 errors per 1000 lines of code. This rate indicates a very high quality of SharpDevelop project's code. Many of the other projects show much worse results. The new check revealed some of the bugs found and described by Andrey in his previous article, but most of the errors are new. The most interesting ones are discussed below. Analysis results Canonical Copy-Paste bug This error deserves its own standard in the International Bureau of Weights and Measures. It is also a vivid example of how useful static analysis is and how dangerous Copy-Paste can be. PVS-Studio diagnostic message: V3102 Suspicious access to element of 'method.SequencePoints' object by a constant index inside a loop. CodeCoverageMethodTreeNode.cs 52 public override void ActivateItem() { if (method != null && method.SequencePoints.Count > 0) { CodeCoverageSequencePoint firstSequencePoint = method.SequencePoints[0]; .... for (int i = 1; i < method.SequencePoints.Count; ++i) { CodeCoverageSequencePoint sequencePoint = method.SequencePoints[0]; // <= .... } ....
  • 3. } .... } The zero-index element of the collection is accessed at each iteration of the for loop. I included the code fragment immediately following the condition of the if statement on purpose to show where the line used in the loop body was copied from. The programmer changed the variable name firstSequencePoint to sequencePoint but forgot to change the expression indexing into the elements. This is what the fixed version of the construct looks like: public override void ActivateItem() { if (method != null && method.SequencePoints.Count > 0) { CodeCoverageSequencePoint firstSequencePoint = method.SequencePoints[0]; .... for (int i = 1; i < method.SequencePoints.Count; ++i) { CodeCoverageSequencePoint sequencePoint = method.SequencePoints[i]; .... } .... } .... } "Find the 10 differences", or another Copy-Paste PVS-Studio diagnostic message: V3021 There are two 'if' statements with identical conditional expressions. The first 'if' statement contains method return. This means that the second 'if' statement is senseless NamespaceTreeNode.cs 87 public int Compare(SharpTreeNode x, SharpTreeNode y) { .... if (typeNameComparison == 0) { if (x.Text.ToString().Length < y.Text.ToString().Length) // <= return -1; if (x.Text.ToString().Length < y.Text.ToString().Length) // <= return 1; }
  • 4. .... } Both if blocks use the same condition. I can't say for sure what exactly the correct version of the code should look like in this case; it has to be decided by the program author. Late null check PVS-Studio diagnostic message: V3095 The 'position' object was used before it was verified against null. Check lines: 204, 206. Task.cs 204 public void JumpToPosition() { if (hasLocation && !position.IsDeleted) // <= .... else if (position != null) .... } The position variable is used without testing it for null. The check is done in another condition, in the else block. This is what the fixed version could look like: public void JumpToPosition() { if (hasLocation && position != null && !position.IsDeleted) .... else if (position != null) .... } Skipped null check PVS-Studio diagnostic message: V3125 The 'mainAssemblyList' object was used after it was verified against null. Check lines: 304, 291. ClassBrowserPad.cs 304 void UpdateActiveWorkspace() { var mainAssemblyList = SD.ClassBrowser.MainAssemblyList; if ((mainAssemblyList != null) && (activeWorkspace != null)) { .... } .... mainAssemblyList.Assemblies.Clear(); // <= ....
  • 5. } The mainAssemblyList variable is used without a prior null check, while such a check can be found in another statement in this fragment. The fixed code: void UpdateActiveWorkspace() { var mainAssemblyList = SD.ClassBrowser.MainAssemblyList; if ((mainAssemblyList != null) && (activeWorkspace != null)) { .... } .... if (mainAssemblyList != null) { mainAssemblyList.Assemblies.Clear(); } .... } Unexpected sorting result PVS-Studio diagnostic message: V3078 Original sorting order will be lost after repetitive call to 'OrderBy' method. Use 'ThenBy' method to preserve the original sorting. CodeCoverageMethodElement.cs 124 void Init() { .... this.SequencePoints.OrderBy(item => item.Line) .OrderBy(item => item.Column); // <= } This code will sort the SequencePoints collection only by the Column field, which doesn't seem to be the desired result. The problem with this code is that the second call to the OrderBy method will sort the collection without taking into account the results of the previous sort. To fix this issue, method ThenBy must be used instead of the second call to OrderBy: void Init() { .... this.SequencePoints.OrderBy(item => item.Line) .ThenBy(item => item.Column); } Possible division by zero
  • 6. PVS-Studio diagnostic message: V3064 Potential division by zero. Consider inspecting denominator 'workAmount'. XamlSymbolSearch.cs 60 public XamlSymbolSearch(IProject project, ISymbol entity) { .... interestingFileNames = new List<FileName>(); .... foreach (var item in ....) interestingFileNames.Add(item.FileName); .... workAmount = interestingFileNames.Count; workAmountInverse = 1.0 / workAmount; // <= } If the interestingFileNames collection is found to be empty, a division by zero will occur. I can't suggest a ready solution for this code, but in any case, the authors need to improve the algorithm computing the value of the workAmountInverse variable when the value of the workAmount variable is zero. Repeated assignment PVS-Studio diagnostic message: V3008 The 'ignoreDialogIdSelectedInTextEditor' variable is assigned values twice successively. Perhaps this is a mistake. Check lines: 204, 201. WixDialogDesigner.cs 204 void OpenDesigner() { try { ignoreDialogIdSelectedInTextEditor = true; // <= WorkbenchWindow.ActiveViewContent = this; } finally { ignoreDialogIdSelectedInTextEditor = false; // <= } } The ignoreDialogIdSelectedInTextEditor variable will be assigned with the value false regardless of the result of executing the try block. Let's take a closer look at the variable declarations to make sure there are no "pitfalls" there. This is the declaration of ignoreDialogIdSelectedInTextEditor: bool ignoreDialogIdSelectedInTextEditor; And here are the declarations of IWorkbenchWindow and ActiveViewContent: public IWorkbenchWindow WorkbenchWindow { get { return workbenchWindow; } }
  • 7. IViewContent ActiveViewContent { get; set; } As you can see, there are no legitimate reasons for assigning another value to the ignoreDialogIdSelectedInTextEditor variable. Perhaps the correct version of this construct should use the catch keyword instead of finally: void OpenDesigner() { try { ignoreDialogIdSelectedInTextEditor = true; WorkbenchWindow.ActiveViewContent = this; } catch { ignoreDialogIdSelectedInTextEditor = false; } } Incorrect search of a substring PVS-Studio diagnostic message: V3053 An excessive expression. Examine the substrings '/debug' and '/debugport'. NDebugger.cs 287 public bool IsKernelDebuggerEnabled { get { .... if (systemStartOptions.Contains("/debug") || systemStartOptions.Contains("/crashdebug") || systemStartOptions.Contains("/debugport") || // <= systemStartOptions.Contains("/baudrate")) { return true; } .... } } This code uses a serial search looking for the substring "/debug" or "/debugport" in the systemStartOptions string. The problem with this fragment is that the "/debug" string is itself a substring of "/debugport", so finding "/debug" makes further search of "/debugport" meaningless. It's not a bug, but it won't harm to optimize the code: public bool IsKernelDebuggerEnabled {
  • 8. get { .... if (systemStartOptions.Contains("/debug") || systemStartOptions.Contains("/crashdebug") || systemStartOptions.Contains("/baudrate")) { return true; } .... } } Exception-handling error PVS-Studio diagnostic message: V3052 The original exception object 'ex' was swallowed. Stack of original exception could be lost. ReferenceFolderNodeCommands.cs 130 DiscoveryClientProtocol DiscoverWebServices(....) { try { .... } catch (WebException ex) { if (....) { .... } else { throw ex; // <= } } .... } Executing the throw ex call will result in overwriting the stack of the original exception, as the intercepted exception will be generated anew. This is the fixed version: DiscoveryClientProtocol DiscoverWebServices(....) { try { .... } catch (WebException ex) { if (....) {
  • 9. .... } else { throw; } } .... } Using an uninitialized field in a class constructor PVS-Studio diagnostic message: V3128 The 'contentPanel' field is used before it is initialized in constructor. SearchResultsPad.cs 66 Grid contentPanel; public SearchResultsPad() { .... defaultToolbarItems = ToolBarService .CreateToolBarItems(contentPanel, ....); // <= .... contentPanel = new Grid {....}; .... } The contentPanel field is passed as one of the arguments to the CreateToolBarItems method in the constructor of the SearchResultsPad class. However, this field is not initialized until it has been used. It's not necessarily an error, given that the possibility of the contentPanel variable with the value of null is taken into account in the body of the CreateToolBarItems method and further on in the stack. This code still looks very suspicious and needs to be examined by the authors. As I have already said, this article discusses far not all the bugs found by PVS-Studio in this project but only those that seemed interesting to me. The project authors are welcome to contact us to get a temporary license key for a more thorough analysis of their code. Conclusion PVS-Studio did well again and revealed new interesting bugs during the second check of SharpDevelop project. It means the analyzer knows how to do its job and can help make the world a bit better. Remember that you, too, can join us at any time by taking the opportunity of checking your own projects with the free version of PVS-Studio static analyzer. You can download PVS-Studio at http://www.viva64.com/en/pvs-studio/ Please email us if you have any questions regarding the purchase of a commercial license. You can also contact us to ask for a temporary license for deeper exploration of PVS-Studio without the limitations of the demo version.