SlideShare a Scribd company logo
Case Study of the Unexplained
Case Study of Programmer
       Nightmares
  Shannon’s Edition 20120624
What is the talk about
• Inspired by Mark Russinovich’s Presentation
  – Case of the Unexplained
  – http://technet.microsoft.com/en-
    us/sysinternals/bb963887
• Here are my cases
  – Mainly fixing programming problem
  – Mostly C++, some interop & cross-platform.
  – Most are from my bad memory.
  – Sorry about the boring slides.
Steps to Debug a problem
1.   There is no step 1
2.   See Step 1
3.   ???
4.   Profit
General Guidelines
•   Reproducible test case.
•   Learn the tools.
•   Make a Wild A** Guess (WAG) on source
•   Persistent
    – Grind through it.
• Ask someone else to handle it. (NOT ME)
Case: WOMM
Problem: Debug vs Release
          Debug                       Optimized




• Program is not drawing the circle around the cursor
  but is where the user clicks.
• Same class does both drawings, different location
• Did work previously
Causes Optimization Problems
1. Undefined Behaviors
  1. Uninitialized Memory
  2. Overflows/underflows
2. Thread problems.
3. Code or Data is wrong.
….
999.Complier Bug (not likely, see #1)
1000.Hardware/OS/driver bug.
Step I took
• What’s changed.
  – Major merge with other branch.
  – Massive file and project settings changes.
• Build optimized with debug symbols & debug
  – Could jump around a lot
  – Local variables will not be present or wrong*
  – this pointer only valid on member function entry.
• Compare working/non-working objects
Found the Function
• Formula:
              A* x B * y C
       I
             D*w E *h F 1
• D, E, F = 0, so have this, and verified all inputs.

      I      A* x B * y C
Next Trick: Binary Search
• Turning on/off optimizations
  – Per Library
  – Per File
  – Per function
  – Per optimization
• Found, Global Optimization “Cause” problem
  – Last merge turned it on.
  – Turned it off. Everything works 
Extremely Important Rule
• Unless you understand why the problem is
  fixed, its not fixed. The problem is likely still
  there just hidden better.
Missed something important
• Formula:
              A* x B * y C
      I
             D*w E *h F 1
• D, E, F = 0, so have this, and verified all inputs

             A* x B * y C
      I
                  1
Lets talk this Out
• w & h were uninitialized, but can’t be it. MAYBE
• 0 time any number is 0. TRUE
• w & h are number. FALSE
  – Double Precision IEEE 754
• IEEE 754 only contains number. FALSE
  – Contains ±0, ±INF, … NaN
NaN is weird.
• Any operation with NaN results in NaN
  – *, +, -, /, sin, etc
• Most comparisons with NaN are false.
  – <, <=, >, ==, etc, so NaN == NaN is false
• Not equals is always true.
  – NaN != NaN is true.
• Multiple types
  – QNaN, SNaN
Case Close
• Should have trusted 1st guess.
• Gave up too soon with a quick wrong fix.
Case: Works Everywhere Else
Problem
• 6-8 high priority bugs from FAT.
• All bugs had the same pattern.
  – Only occurred on Window 2000 box.
  – Display wrong converted values.
  – Works on XP, and 2003.
• It a cross-platform assign to Me.
Steps I took
• Start Debug Build of Integration Branch.
• Get the release, and try to reproduce bug.
  – Grabbed it from the build NFS share.
  – Didn’t “fail”
• Try the test box.
  – It “fails”, but can’t debug.
  – Copy it to dev box
  – It fails on my box.
WAG time
• Cosmic Rays corrupted the Executable.
  – No replacing them with debug build still had bug.
What Could It Be
• Diff installed w/ what should be there.
  – Should be No Differences
• Massive Differences.
• Install CD didn’t have and Differences
• I know what happened.
Here is What Happened
• Tester skipped using the Install Win2K CD.
  – Didn’t want to walk to other end of hall.
• TAR-ed up NFS install shared.
• FTP it over.
• Used WinZip to untar file.
Why is WinZip Bad?
Case Closed
• The “table.dat” file was converted to windows
  newlines.
  – Doesn’t work properly like that.
• All Test Follow Proper Procedures.
• Don’t take Short Cuts.
  – Especially During FAT.
Case: Psychic Debugging
Problem: Phone Call
1. Got a phone call
2. Developer describe the problem and steps
   taken to track down the problem.
3. Answer with the root cause and how to fix.

Now its time for the interactive part of this talk.
Pretend you me, ….
Real Problem
• File parsing code incorrectly errors out.
  – Worked on following
     •   Windows 32/64-bits debug/release,
     •   Irix 32/64-bits debug/release,
     •   Solaris SPARC 32/64-bit debug/release
     •   Linux 64-bit debug/release, 32-bit debug.
  – Fails on Linux 32-bit x86 gcc optimize
What does the code do?
• Read text like file
   – Contains repeated floating point numbers.
   – Lots of other data between repeated number.
• Parses data into native types (int, double)
• Validate Data is sane
   – Number are with spec.
   – Repeated doubles are the same with != check.
      • This step failed.
Code
double lat1 = atof(buff1);
…
double lat2 = atof(buff2);
…
if(lat1 != lat2) return -1;
I’m 95% certain of problem
Write down your answer now.
   More info from the developer
Additional QA with develop
• Did they check input file is valid? YES
• How did the developer track down it down?
  – Printf debugging number same, but check failed.
• Did adding/moving additional printf make
  the problem go away? YES
  – This confirmed that I guessed right 
Your Turn
• Failed 32-bit x86 optimized linux
• Deal with C++ native double types
  – uses != to compare them.
• Adding some printfs made problem go away.

Who know what happened.
Additional Slide If No One Knows
•   Root cause is 486
•   Specifically math co-processor
•   C++ doubles are 64-bits in memory
•   486 math registers are 80-bits
•   Can’t store 80-bits in 64-bit
•   Round double when copied into memory.
•   Optimizer will speed up code
    – Will attempt to reduce the # of memory copies.
• Wait here until some guesses.
Here is what happened
•   Function converted 1st string to 80-bit double
•   Compiler moved result into 64-bit on stack
•   Function conerted 2nd string to 80-bit double
•   Compiler got smart and kept it in 80-bits.
•   Loaded 1st 64-bit double into 80-bit register.
•   2nd number has more precision so it didn’t
    match.
Optimized ASM Code
call atof ; buff1 in eax
fstor [sp+20], ST(0)
…
…
call atof ; buff2 in eax
fload ST(1), [sp+20]
fcmp ST(0), ST(1) ; compare 80 w/ 64-bits
jmpe +8 ; skip over next line if ==
ret ; error
Case Close
• Changed to use strcmp instead.
• Never directly compare double without a
  tolerance.
• Round errors will cause mathematically
  impossible to happen.
• Stupid 80-bits.
Case: Shoot Self in Foot
Problem: Crash with no reasons
• New developed code
• Crashed on Solaris while calling constructor
• No “obvious” problem with code
Code
class A {
   …
   A(A *d) { *this = d; }
   …
   A& operator=(const A &d) {
      …
      return *this;
   }
};
Steps I took
• Build code on Windows.
  – Visual Studio Debugger is 10x nicer
• Got a helpful warning
  – warning C4717: ‘A::A’ : recursive on all control
    paths, function will cause runtime stack overflow
Code Again
class A {
   A(A *d) {
      *this = d;
   }
   A& operator=(const A &d) {…}
};
What the Compiler Does
class A {
   A(A *d) {
      A __tempA(d);
      *this->operator=(__tempA);
   }
   A& operator=(const A &d) {…}
};
Solution #1
class A {
   A(A *d) {
      *this = *d;
   }
   A& operator=(const A &d) {…}
};
Problem With Solution #1
• What does the following code do
  A d = NULL;
• Compile does this following
  A d = A(NULL);
• Which crashes.
• “A d = 0” also crashes.
Solution #2
class A {
 explicit A(A *d) {
      *this = *d;
   }
   A& operator=(const A &d) {…}
};
C++ “Rule of 3” Solution
class A {
  A(const A &d) {…}
  ~A() {…}
  A& operator=(const A &d) {…}
};
C++11 “Rule of 3,4, or 5” Solution
class A {
  A(const A &d) {…}
  A(A &&d) {…}
  ~A() {…}
  A& operator=(const A &d) {…}
  A& operator=(A &&d) {…}
};
Case Close
• Pay Attention to compiler warnings.
  – This particular warning appear in 3 other places.
• Use Compiler that give better warnings.
  – CLANG/LLVM has the best error/warnings.
Case: “Random” Crashes
Problem: GUI randomly crashes

         Java
   Automagic JNI Junk
         C++
Steps I took
• Build Debug
  – debug runtimes make it crash faster due to checks
• Use 2 Debugger Visual Studio & JBuilder
• 4 hours of persistent.
Track it down, but no clue
• Java had valid pointer to C++ object.
• Pressed button, & pointer no longer valid
• Trick time.
Data Breakpoint.
• x86 has 4 hardware data breakpoints
  – Program runs at full speed.
  – 1 is reserved by OS
• Must take following form. (Old Info)
  – Memory address, length(must be 4).
  – 0x12345678,4
How to do it VS2010
• Step 1
How to do it VS2010
• Step 2
How to do it VS2010
• Step 3 Done
How to do it VS2010
• Step 4 See Results
BAM Data Changed
• Java GC
  – > finalizer
  – > Automagic JNI junk
  – > delete object
• Why, leaky abstraction.
Here is What Happened.
Java                   C++
AMJJArray          ARRAY | | | | | | |

AMJJThing
Case Close
• Data Breakpoints Rule.
• All Abstraction Leak
  – Know how before proceeding.
That’s all for Now

Questions, Comment, etc.

More Related Content

KEY
Unit testing for Cocoa developers
PDF
Introduzione allo Unit Testing
KEY
Taking a Test Drive: iOS Dev UK guide to TDD
PPTX
Cd’s
PPTX
Cd dsi out24
PDF
Cdi primaria lengua 2010
PDF
Casestudy cricket (1)
Unit testing for Cocoa developers
Introduzione allo Unit Testing
Taking a Test Drive: iOS Dev UK guide to TDD
Cd’s
Cd dsi out24
Cdi primaria lengua 2010
Casestudy cricket (1)

Similar to Case Study of the Unexplained (20)

PPTX
.NET Core Summer event 2019 in Linz, AT - War stories from .NET team -- Karel...
PPTX
.NET Core Summer event 2019 in Vienna, AT - War stories from .NET team -- Kar...
PPTX
NDC Oslo 2019 - War stories from .NET team -- Karel Zikmund
PPTX
.NET Core Summer event 2019 in NL - War stories from .NET team -- Karel Zikmund
PPTX
Static Code Analysis PHP[tek] 2023
PPTX
Patching Windows Executables with the Backdoor Factory | DerbyCon 2013
PPTX
.NET Core Summer event 2019 in Brno, CZ - War stories from .NET team -- Karel...
PDF
Rihards Olups - Zabbix at Nokia - Case Study
PPTX
Asufe juniors-training session2
PDF
Php Debugging from the Trenches
PDF
Optimizing thread performance for a genomics variant caller
PPTX
Experience with jemalloc
PDF
Surge2012
PPTX
How to overcome mysterious problems caused by large and multi-tenancy Hadoop ...
PDF
CNIT 126 9: OllyDbg
PPTX
Elite Bug Squashing
PPTX
2013.09.10 Giraph at London Hadoop Users Group
PPTX
.NET Core Summer event 2019 in Prague, CZ - War stories from .NET team -- Kar...
PDF
Polyglot and Poly-paradigm Programming for Better Agility
.NET Core Summer event 2019 in Linz, AT - War stories from .NET team -- Karel...
.NET Core Summer event 2019 in Vienna, AT - War stories from .NET team -- Kar...
NDC Oslo 2019 - War stories from .NET team -- Karel Zikmund
.NET Core Summer event 2019 in NL - War stories from .NET team -- Karel Zikmund
Static Code Analysis PHP[tek] 2023
Patching Windows Executables with the Backdoor Factory | DerbyCon 2013
.NET Core Summer event 2019 in Brno, CZ - War stories from .NET team -- Karel...
Rihards Olups - Zabbix at Nokia - Case Study
Asufe juniors-training session2
Php Debugging from the Trenches
Optimizing thread performance for a genomics variant caller
Experience with jemalloc
Surge2012
How to overcome mysterious problems caused by large and multi-tenancy Hadoop ...
CNIT 126 9: OllyDbg
Elite Bug Squashing
2013.09.10 Giraph at London Hadoop Users Group
.NET Core Summer event 2019 in Prague, CZ - War stories from .NET team -- Kar...
Polyglot and Poly-paradigm Programming for Better Agility
Ad

Recently uploaded (20)

PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
A Presentation on Touch Screen Technology
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
Approach and Philosophy of On baking technology
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
project resource management chapter-09.pdf
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PDF
Enhancing emotion recognition model for a student engagement use case through...
PDF
Hybrid model detection and classification of lung cancer
PDF
Heart disease approach using modified random forest and particle swarm optimi...
PPTX
TLE Review Electricity (Electricity).pptx
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Chapter 5: Probability Theory and Statistics
PDF
WOOl fibre morphology and structure.pdf for textiles
Building Integrated photovoltaic BIPV_UPV.pdf
A Presentation on Touch Screen Technology
Hindi spoken digit analysis for native and non-native speakers
Approach and Philosophy of On baking technology
A comparative analysis of optical character recognition models for extracting...
gpt5_lecture_notes_comprehensive_20250812015547.pdf
project resource management chapter-09.pdf
A novel scalable deep ensemble learning framework for big data classification...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Zenith AI: Advanced Artificial Intelligence
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Enhancing emotion recognition model for a student engagement use case through...
Hybrid model detection and classification of lung cancer
Heart disease approach using modified random forest and particle swarm optimi...
TLE Review Electricity (Electricity).pptx
NewMind AI Weekly Chronicles - August'25-Week II
Encapsulation_ Review paper, used for researhc scholars
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Chapter 5: Probability Theory and Statistics
WOOl fibre morphology and structure.pdf for textiles
Ad

Case Study of the Unexplained

  • 2. Case Study of Programmer Nightmares Shannon’s Edition 20120624
  • 3. What is the talk about • Inspired by Mark Russinovich’s Presentation – Case of the Unexplained – http://technet.microsoft.com/en- us/sysinternals/bb963887 • Here are my cases – Mainly fixing programming problem – Mostly C++, some interop & cross-platform. – Most are from my bad memory. – Sorry about the boring slides.
  • 4. Steps to Debug a problem 1. There is no step 1 2. See Step 1 3. ??? 4. Profit
  • 5. General Guidelines • Reproducible test case. • Learn the tools. • Make a Wild A** Guess (WAG) on source • Persistent – Grind through it. • Ask someone else to handle it. (NOT ME)
  • 7. Problem: Debug vs Release Debug Optimized • Program is not drawing the circle around the cursor but is where the user clicks. • Same class does both drawings, different location • Did work previously
  • 8. Causes Optimization Problems 1. Undefined Behaviors 1. Uninitialized Memory 2. Overflows/underflows 2. Thread problems. 3. Code or Data is wrong. …. 999.Complier Bug (not likely, see #1) 1000.Hardware/OS/driver bug.
  • 9. Step I took • What’s changed. – Major merge with other branch. – Massive file and project settings changes. • Build optimized with debug symbols & debug – Could jump around a lot – Local variables will not be present or wrong* – this pointer only valid on member function entry. • Compare working/non-working objects
  • 10. Found the Function • Formula: A* x B * y C I D*w E *h F 1 • D, E, F = 0, so have this, and verified all inputs. I A* x B * y C
  • 11. Next Trick: Binary Search • Turning on/off optimizations – Per Library – Per File – Per function – Per optimization • Found, Global Optimization “Cause” problem – Last merge turned it on. – Turned it off. Everything works 
  • 12. Extremely Important Rule • Unless you understand why the problem is fixed, its not fixed. The problem is likely still there just hidden better.
  • 13. Missed something important • Formula: A* x B * y C I D*w E *h F 1 • D, E, F = 0, so have this, and verified all inputs A* x B * y C I 1
  • 14. Lets talk this Out • w & h were uninitialized, but can’t be it. MAYBE • 0 time any number is 0. TRUE • w & h are number. FALSE – Double Precision IEEE 754 • IEEE 754 only contains number. FALSE – Contains ±0, ±INF, … NaN
  • 15. NaN is weird. • Any operation with NaN results in NaN – *, +, -, /, sin, etc • Most comparisons with NaN are false. – <, <=, >, ==, etc, so NaN == NaN is false • Not equals is always true. – NaN != NaN is true. • Multiple types – QNaN, SNaN
  • 16. Case Close • Should have trusted 1st guess. • Gave up too soon with a quick wrong fix.
  • 18. Problem • 6-8 high priority bugs from FAT. • All bugs had the same pattern. – Only occurred on Window 2000 box. – Display wrong converted values. – Works on XP, and 2003. • It a cross-platform assign to Me.
  • 19. Steps I took • Start Debug Build of Integration Branch. • Get the release, and try to reproduce bug. – Grabbed it from the build NFS share. – Didn’t “fail” • Try the test box. – It “fails”, but can’t debug. – Copy it to dev box – It fails on my box.
  • 20. WAG time • Cosmic Rays corrupted the Executable. – No replacing them with debug build still had bug.
  • 21. What Could It Be • Diff installed w/ what should be there. – Should be No Differences • Massive Differences. • Install CD didn’t have and Differences • I know what happened.
  • 22. Here is What Happened • Tester skipped using the Install Win2K CD. – Didn’t want to walk to other end of hall. • TAR-ed up NFS install shared. • FTP it over. • Used WinZip to untar file.
  • 24. Case Closed • The “table.dat” file was converted to windows newlines. – Doesn’t work properly like that. • All Test Follow Proper Procedures. • Don’t take Short Cuts. – Especially During FAT.
  • 26. Problem: Phone Call 1. Got a phone call 2. Developer describe the problem and steps taken to track down the problem. 3. Answer with the root cause and how to fix. Now its time for the interactive part of this talk. Pretend you me, ….
  • 27. Real Problem • File parsing code incorrectly errors out. – Worked on following • Windows 32/64-bits debug/release, • Irix 32/64-bits debug/release, • Solaris SPARC 32/64-bit debug/release • Linux 64-bit debug/release, 32-bit debug. – Fails on Linux 32-bit x86 gcc optimize
  • 28. What does the code do? • Read text like file – Contains repeated floating point numbers. – Lots of other data between repeated number. • Parses data into native types (int, double) • Validate Data is sane – Number are with spec. – Repeated doubles are the same with != check. • This step failed.
  • 29. Code double lat1 = atof(buff1); … double lat2 = atof(buff2); … if(lat1 != lat2) return -1;
  • 30. I’m 95% certain of problem Write down your answer now. More info from the developer
  • 31. Additional QA with develop • Did they check input file is valid? YES • How did the developer track down it down? – Printf debugging number same, but check failed. • Did adding/moving additional printf make the problem go away? YES – This confirmed that I guessed right 
  • 32. Your Turn • Failed 32-bit x86 optimized linux • Deal with C++ native double types – uses != to compare them. • Adding some printfs made problem go away. Who know what happened.
  • 33. Additional Slide If No One Knows • Root cause is 486 • Specifically math co-processor • C++ doubles are 64-bits in memory • 486 math registers are 80-bits • Can’t store 80-bits in 64-bit • Round double when copied into memory. • Optimizer will speed up code – Will attempt to reduce the # of memory copies. • Wait here until some guesses.
  • 34. Here is what happened • Function converted 1st string to 80-bit double • Compiler moved result into 64-bit on stack • Function conerted 2nd string to 80-bit double • Compiler got smart and kept it in 80-bits. • Loaded 1st 64-bit double into 80-bit register. • 2nd number has more precision so it didn’t match.
  • 35. Optimized ASM Code call atof ; buff1 in eax fstor [sp+20], ST(0) … … call atof ; buff2 in eax fload ST(1), [sp+20] fcmp ST(0), ST(1) ; compare 80 w/ 64-bits jmpe +8 ; skip over next line if == ret ; error
  • 36. Case Close • Changed to use strcmp instead. • Never directly compare double without a tolerance. • Round errors will cause mathematically impossible to happen. • Stupid 80-bits.
  • 37. Case: Shoot Self in Foot
  • 38. Problem: Crash with no reasons • New developed code • Crashed on Solaris while calling constructor • No “obvious” problem with code
  • 39. Code class A { … A(A *d) { *this = d; } … A& operator=(const A &d) { … return *this; } };
  • 40. Steps I took • Build code on Windows. – Visual Studio Debugger is 10x nicer • Got a helpful warning – warning C4717: ‘A::A’ : recursive on all control paths, function will cause runtime stack overflow
  • 41. Code Again class A { A(A *d) { *this = d; } A& operator=(const A &d) {…} };
  • 42. What the Compiler Does class A { A(A *d) { A __tempA(d); *this->operator=(__tempA); } A& operator=(const A &d) {…} };
  • 43. Solution #1 class A { A(A *d) { *this = *d; } A& operator=(const A &d) {…} };
  • 44. Problem With Solution #1 • What does the following code do A d = NULL; • Compile does this following A d = A(NULL); • Which crashes. • “A d = 0” also crashes.
  • 45. Solution #2 class A { explicit A(A *d) { *this = *d; } A& operator=(const A &d) {…} };
  • 46. C++ “Rule of 3” Solution class A { A(const A &d) {…} ~A() {…} A& operator=(const A &d) {…} };
  • 47. C++11 “Rule of 3,4, or 5” Solution class A { A(const A &d) {…} A(A &&d) {…} ~A() {…} A& operator=(const A &d) {…} A& operator=(A &&d) {…} };
  • 48. Case Close • Pay Attention to compiler warnings. – This particular warning appear in 3 other places. • Use Compiler that give better warnings. – CLANG/LLVM has the best error/warnings.
  • 50. Problem: GUI randomly crashes Java Automagic JNI Junk C++
  • 51. Steps I took • Build Debug – debug runtimes make it crash faster due to checks • Use 2 Debugger Visual Studio & JBuilder • 4 hours of persistent.
  • 52. Track it down, but no clue • Java had valid pointer to C++ object. • Pressed button, & pointer no longer valid • Trick time.
  • 53. Data Breakpoint. • x86 has 4 hardware data breakpoints – Program runs at full speed. – 1 is reserved by OS • Must take following form. (Old Info) – Memory address, length(must be 4). – 0x12345678,4
  • 54. How to do it VS2010 • Step 1
  • 55. How to do it VS2010 • Step 2
  • 56. How to do it VS2010 • Step 3 Done
  • 57. How to do it VS2010 • Step 4 See Results
  • 58. BAM Data Changed • Java GC – > finalizer – > Automagic JNI junk – > delete object • Why, leaky abstraction.
  • 59. Here is What Happened. Java C++ AMJJArray ARRAY | | | | | | | AMJJThing
  • 60. Case Close • Data Breakpoints Rule. • All Abstraction Leak – Know how before proceeding.
  • 61. That’s all for Now Questions, Comment, etc.

Editor's Notes

  • #2: Cuz if I didn&apos;t write it, the code obviously sucks.http://abstrusegoose.com/432
  • #16: Floating processor flags.
  • #21: “work” Couldn’t redo the bug.
  • #23: There were also bigger.Confronted tester and they admitted to the crime
  • #24: Winzip why are you so bad with tars.
  • #25: Horrible default. Why smart? Does it look at file? No. Does it have a white list? No. Even though there are far more binary file types then text types it surely must not be using a black list? It uses a black list. AAAAAAAHHH stupid stupidstupid.
  • #26: No matter how far they have to walk, or how much extra work.
  • #38: Best guess on assembly
  • #39: PHP DOS attach was caused buy using 64-bit string conversion algorithm with 80-bit chip. Java also fell.
  • #41: C/C++ make it easy to do, unless practicing modern C++.
  • #43: Raise hands who actually know the problem
  • #45: There is the line. Look at the type of d, it’s a pointer not a value. Here is what the compiler does.
  • #46: Now you can see that the what the problem really.
  • #47: Bad solution, and is C with classes style &amp; not C++
  • #48: Missing a *
  • #49: Tell c++ don’t use constructor to do implicit conversion. Still C++ style but will get rid
  • #50: C++03 rule of three if there is any complex or pointer data.
  • #51: These are the move constructor and assignment operator. That’s another talk.
  • #52: CLANG uses a spell check algorithm when it finds an unknown symbol
  • #55: Automagic JNI Junk is a dead tool for generating JNI.
  • #56: Fills memory on allocation, deletion, and add guard on end.Involved steps in the GUI for crash. Had to track down the pointer use.
  • #61: Breakpoint automatically disabled when re-running program.
  • #62: Breakpoint automatically disabled when re-running program.