1*f4a2713aSLionel Sambuc // RUN: rm -f %t 2*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -analyze -analyzer-checker=unix.Malloc -analyzer-output=plist -analyzer-config path-diagnostics-alternate=false -o %t %s 3*f4a2713aSLionel Sambuc // RUN: FileCheck -input-file %t %s 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc typedef __typeof(sizeof(int)) size_t; 6*f4a2713aSLionel Sambuc void *malloc(size_t); 7*f4a2713aSLionel Sambuc void free(void *); 8*f4a2713aSLionel Sambuc void *realloc(void *ptr, size_t size); 9*f4a2713aSLionel Sambuc diagnosticTest(int in)10*f4a2713aSLionel Sambucvoid diagnosticTest(int in) { 11*f4a2713aSLionel Sambuc if (in > 5) { 12*f4a2713aSLionel Sambuc int *p = malloc(12); 13*f4a2713aSLionel Sambuc (*p)++; 14*f4a2713aSLionel Sambuc } 15*f4a2713aSLionel Sambuc in++; // expected-warning {{leak}} 16*f4a2713aSLionel Sambuc } 17*f4a2713aSLionel Sambuc myArrayAllocation()18*f4a2713aSLionel Sambucvoid myArrayAllocation() { 19*f4a2713aSLionel Sambuc int **A; 20*f4a2713aSLionel Sambuc A = malloc(2*sizeof(int*)); 21*f4a2713aSLionel Sambuc A[0] = 0;// expected-warning {{leak}} 22*f4a2713aSLionel Sambuc } 23*f4a2713aSLionel Sambuc reallocDiagnostics()24*f4a2713aSLionel Sambucvoid reallocDiagnostics() { 25*f4a2713aSLionel Sambuc char * buf = malloc(100); 26*f4a2713aSLionel Sambuc char * tmp; 27*f4a2713aSLionel Sambuc tmp = (char*)realloc(buf, 0x1000000); 28*f4a2713aSLionel Sambuc if (!tmp) { 29*f4a2713aSLionel Sambuc return;// expected-warning {{leak}} 30*f4a2713aSLionel Sambuc } 31*f4a2713aSLionel Sambuc buf = tmp; 32*f4a2713aSLionel Sambuc free(buf); 33*f4a2713aSLionel Sambuc } 34*f4a2713aSLionel Sambuc wrapper()35*f4a2713aSLionel Sambucvoid *wrapper() { 36*f4a2713aSLionel Sambuc void *x = malloc(100); 37*f4a2713aSLionel Sambuc // This is intentionally done to test diagnostic emission. 38*f4a2713aSLionel Sambuc if (x) 39*f4a2713aSLionel Sambuc return x; 40*f4a2713aSLionel Sambuc return 0; 41*f4a2713aSLionel Sambuc } 42*f4a2713aSLionel Sambuc test_wrapper()43*f4a2713aSLionel Sambucvoid test_wrapper() { 44*f4a2713aSLionel Sambuc void *buf = wrapper(); 45*f4a2713aSLionel Sambuc (void) buf; 46*f4a2713aSLionel Sambuc } 47*f4a2713aSLionel Sambuc 48*f4a2713aSLionel Sambuc // Test what happens when the same call frees and allocated memory. 49*f4a2713aSLionel Sambuc // Also tests the stack hint for parameters, when they are passed directly or via pointer. my_free(void * x)50*f4a2713aSLionel Sambucvoid my_free(void *x) { 51*f4a2713aSLionel Sambuc free(x); 52*f4a2713aSLionel Sambuc } my_malloc_and_free(void ** x)53*f4a2713aSLionel Sambucvoid my_malloc_and_free(void **x) { 54*f4a2713aSLionel Sambuc *x = malloc(100); 55*f4a2713aSLionel Sambuc if (*x) 56*f4a2713aSLionel Sambuc my_free(*x); 57*f4a2713aSLionel Sambuc return; 58*f4a2713aSLionel Sambuc } test_double_action_call()59*f4a2713aSLionel Sambucvoid *test_double_action_call() { 60*f4a2713aSLionel Sambuc void *buf; 61*f4a2713aSLionel Sambuc my_malloc_and_free(&buf); 62*f4a2713aSLionel Sambuc return buf; 63*f4a2713aSLionel Sambuc } 64*f4a2713aSLionel Sambuc 65*f4a2713aSLionel Sambuc // Test stack hint for 'reallocation failed'. my_realloc(char * buf)66*f4a2713aSLionel Sambucchar *my_realloc(char *buf) { 67*f4a2713aSLionel Sambuc char *tmp; 68*f4a2713aSLionel Sambuc tmp = (char*)realloc(buf, 0x1000000); 69*f4a2713aSLionel Sambuc if (!tmp) { 70*f4a2713aSLionel Sambuc return tmp; 71*f4a2713aSLionel Sambuc } 72*f4a2713aSLionel Sambuc return tmp; 73*f4a2713aSLionel Sambuc } reallocIntra()74*f4a2713aSLionel Sambucvoid reallocIntra() { 75*f4a2713aSLionel Sambuc char *buf = (char *)malloc(100); 76*f4a2713aSLionel Sambuc buf = my_realloc(buf); 77*f4a2713aSLionel Sambuc free(buf); 78*f4a2713aSLionel Sambuc } 79*f4a2713aSLionel Sambuc 80*f4a2713aSLionel Sambuc // Test stack hint when returning a result. malloc_wrapper_ret()81*f4a2713aSLionel Sambucstatic char *malloc_wrapper_ret() { 82*f4a2713aSLionel Sambuc return (char*)malloc(12); 83*f4a2713aSLionel Sambuc } use_ret()84*f4a2713aSLionel Sambucvoid use_ret() { 85*f4a2713aSLionel Sambuc char *v; 86*f4a2713aSLionel Sambuc v = malloc_wrapper_ret(); 87*f4a2713aSLionel Sambuc } 88*f4a2713aSLionel Sambuc 89*f4a2713aSLionel Sambuc // Test that we refer to the last symbol used in the leak diagnostic. LeakedSymbol(int in)90*f4a2713aSLionel Sambucvoid LeakedSymbol(int in) { 91*f4a2713aSLionel Sambuc int *m = 0; 92*f4a2713aSLionel Sambuc int *p; 93*f4a2713aSLionel Sambuc p = (int*)malloc(12); 94*f4a2713aSLionel Sambuc (*p)++; 95*f4a2713aSLionel Sambuc m = p; 96*f4a2713aSLionel Sambuc p = 0; 97*f4a2713aSLionel Sambuc (*m)++; 98*f4a2713aSLionel Sambuc in++; 99*f4a2713aSLionel Sambuc } 100*f4a2713aSLionel Sambuc 101*f4a2713aSLionel Sambuc // Tests that exercise running remove dead bindings at Call exit. function_with_leak1()102*f4a2713aSLionel Sambucstatic void function_with_leak1() { 103*f4a2713aSLionel Sambuc char *x = (char*)malloc(12); 104*f4a2713aSLionel Sambuc } use_function_with_leak1()105*f4a2713aSLionel Sambucvoid use_function_with_leak1() { 106*f4a2713aSLionel Sambuc function_with_leak1(); 107*f4a2713aSLionel Sambuc int y = 0; 108*f4a2713aSLionel Sambuc } 109*f4a2713aSLionel Sambuc function_with_leak2()110*f4a2713aSLionel Sambucstatic void function_with_leak2() { 111*f4a2713aSLionel Sambuc char *x = (char*)malloc(12); 112*f4a2713aSLionel Sambuc int m = 0; 113*f4a2713aSLionel Sambuc } use_function_with_leak2()114*f4a2713aSLionel Sambucvoid use_function_with_leak2() { 115*f4a2713aSLionel Sambuc function_with_leak2(); 116*f4a2713aSLionel Sambuc } 117*f4a2713aSLionel Sambuc function_with_leak3(int y)118*f4a2713aSLionel Sambucstatic void function_with_leak3(int y) { 119*f4a2713aSLionel Sambuc char *x = (char*)malloc(12); 120*f4a2713aSLionel Sambuc if (y) 121*f4a2713aSLionel Sambuc y++; 122*f4a2713aSLionel Sambuc } use_function_with_leak3(int y)123*f4a2713aSLionel Sambucvoid use_function_with_leak3(int y) { 124*f4a2713aSLionel Sambuc function_with_leak3(y); 125*f4a2713aSLionel Sambuc } 126*f4a2713aSLionel Sambuc function_with_leak4(int y)127*f4a2713aSLionel Sambucstatic void function_with_leak4(int y) { 128*f4a2713aSLionel Sambuc char *x = (char*)malloc(12); 129*f4a2713aSLionel Sambuc if (y) 130*f4a2713aSLionel Sambuc y++; 131*f4a2713aSLionel Sambuc else 132*f4a2713aSLionel Sambuc y--; 133*f4a2713aSLionel Sambuc } use_function_with_leak4(int y)134*f4a2713aSLionel Sambucvoid use_function_with_leak4(int y) { 135*f4a2713aSLionel Sambuc function_with_leak4(y); 136*f4a2713aSLionel Sambuc } 137*f4a2713aSLionel Sambuc anotherFunction5()138*f4a2713aSLionel Sambucint anotherFunction5() { 139*f4a2713aSLionel Sambuc return 5; 140*f4a2713aSLionel Sambuc } function_with_leak5()141*f4a2713aSLionel Sambucstatic int function_with_leak5() { 142*f4a2713aSLionel Sambuc char *x = (char*)malloc(12); 143*f4a2713aSLionel Sambuc return anotherFunction5(); 144*f4a2713aSLionel Sambuc } use_function_with_leak5()145*f4a2713aSLionel Sambucvoid use_function_with_leak5() { 146*f4a2713aSLionel Sambuc function_with_leak5(); 147*f4a2713aSLionel Sambuc } 148*f4a2713aSLionel Sambuc anotherFunction6(int m)149*f4a2713aSLionel Sambucvoid anotherFunction6(int m) { 150*f4a2713aSLionel Sambuc m++; 151*f4a2713aSLionel Sambuc } function_with_leak6()152*f4a2713aSLionel Sambucstatic void function_with_leak6() { 153*f4a2713aSLionel Sambuc char *x = (char*)malloc(12); 154*f4a2713aSLionel Sambuc anotherFunction6(3); 155*f4a2713aSLionel Sambuc } use_function_with_leak6()156*f4a2713aSLionel Sambucvoid use_function_with_leak6() { 157*f4a2713aSLionel Sambuc function_with_leak6(); 158*f4a2713aSLionel Sambuc } 159*f4a2713aSLionel Sambuc empty_function()160*f4a2713aSLionel Sambucstatic void empty_function(){ 161*f4a2713aSLionel Sambuc } use_empty_function()162*f4a2713aSLionel Sambucvoid use_empty_function() { 163*f4a2713aSLionel Sambuc empty_function(); 164*f4a2713aSLionel Sambuc } function_with_leak7()165*f4a2713aSLionel Sambucstatic char *function_with_leak7() { 166*f4a2713aSLionel Sambuc return (char*)malloc(12); 167*f4a2713aSLionel Sambuc } use_function_with_leak7()168*f4a2713aSLionel Sambucvoid use_function_with_leak7() { 169*f4a2713aSLionel Sambuc function_with_leak7(); 170*f4a2713aSLionel Sambuc } 171*f4a2713aSLionel Sambuc 172*f4a2713aSLionel Sambuc // Test that we do not print the name of a variable not visible from where 173*f4a2713aSLionel Sambuc // the issue is reported. my_malloc()174*f4a2713aSLionel Sambucint *my_malloc() { 175*f4a2713aSLionel Sambuc int *p = malloc(12); 176*f4a2713aSLionel Sambuc return p; 177*f4a2713aSLionel Sambuc } testOnlyRefferToVisibleVariables()178*f4a2713aSLionel Sambucvoid testOnlyRefferToVisibleVariables() { 179*f4a2713aSLionel Sambuc my_malloc(); 180*f4a2713aSLionel Sambuc } // expected-warning {{Potential leak of memory}} 181*f4a2713aSLionel Sambuc 182*f4a2713aSLionel Sambuc struct PointerWrapper{ 183*f4a2713aSLionel Sambuc int*p; 184*f4a2713aSLionel Sambuc }; my_malloc_into_struct()185*f4a2713aSLionel Sambucint *my_malloc_into_struct() { 186*f4a2713aSLionel Sambuc struct PointerWrapper w; 187*f4a2713aSLionel Sambuc w.p = malloc(12); 188*f4a2713aSLionel Sambuc return w.p; 189*f4a2713aSLionel Sambuc } testMyMalloc()190*f4a2713aSLionel Sambucvoid testMyMalloc() { 191*f4a2713aSLionel Sambuc my_malloc_into_struct(); // expected-warning {{Potential leak of memory}} 192*f4a2713aSLionel Sambuc } 193*f4a2713aSLionel Sambuc 194*f4a2713aSLionel Sambuc // CHECK: <key>diagnostics</key> 195*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 196*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 197*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 198*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 199*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 200*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 201*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 202*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 203*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 204*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 205*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 206*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 207*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>11</integer> 208*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 209*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 210*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 211*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 212*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>11</integer> 213*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 214*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 215*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 216*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 217*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 218*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 219*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 220*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>11</integer> 221*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 222*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 223*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 224*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 225*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>11</integer> 226*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 227*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 228*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 229*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 230*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 231*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 232*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 233*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 234*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 235*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 236*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 237*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>11</integer> 238*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 239*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 240*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 241*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 242*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 243*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 244*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 245*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>11</integer> 246*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 247*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 248*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 249*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 250*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>11</integer> 251*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>14</integer> 252*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 253*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 254*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 255*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 256*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 257*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 258*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'in' is > 5</string> 259*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 260*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'in' is > 5</string> 261*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 262*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 263*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 264*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 265*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 266*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 267*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 268*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 269*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 270*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>11</integer> 271*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 272*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 273*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 274*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 275*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>11</integer> 276*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 277*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 278*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 279*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 280*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 281*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 282*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 283*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 284*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 285*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 286*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 287*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 288*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 289*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 290*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 291*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 292*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 293*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 294*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 295*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 296*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 297*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 298*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 299*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 300*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 301*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 302*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 303*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 304*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 305*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 306*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 307*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 308*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 309*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 310*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 311*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 312*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 313*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 314*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 315*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 316*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 317*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 318*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 319*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 320*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 321*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 322*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 323*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>23</integer> 324*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 325*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 326*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 327*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 328*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 329*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 330*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 331*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 332*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 333*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 334*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 335*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 336*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 337*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 338*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 339*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 340*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 341*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 342*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 343*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 344*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 345*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 346*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 347*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 348*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 349*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 350*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 351*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 352*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 353*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 354*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 355*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 356*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 357*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 358*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 359*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 360*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 361*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 362*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 363*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 364*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 365*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 366*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 367*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 368*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 369*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 370*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 371*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 372*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>12</integer> 373*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>23</integer> 374*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 375*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 376*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 377*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 378*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 379*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 380*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 381*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 382*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 383*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 384*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 385*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 386*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 387*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 388*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 389*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 390*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 391*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 392*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 393*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 394*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 395*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 396*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 397*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 398*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 399*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 400*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 401*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 402*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 403*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'p'</string> 404*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 405*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'p'</string> 406*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 407*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 408*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'p'</string> 409*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 410*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 411*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 412*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>diagnosticTest</string> 413*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>2</string> 414*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 415*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 416*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 417*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 418*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 419*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 420*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 421*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 422*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 423*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 424*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 425*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 426*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 427*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 428*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 429*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 430*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 431*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 432*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>19</integer> 433*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 434*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 435*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 436*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 437*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>19</integer> 438*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 439*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 440*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 441*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 442*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 443*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 444*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 445*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 446*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 447*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 448*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 449*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 450*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 451*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 452*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 453*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 454*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 455*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 456*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 457*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 458*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 459*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 460*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 461*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 462*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 463*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 464*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 465*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 466*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 467*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 468*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 469*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 470*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 471*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 472*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 473*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 474*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 475*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 476*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 477*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 478*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 479*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 480*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 481*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 482*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 483*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 484*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 485*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>14</integer> 486*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 487*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 488*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 489*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 490*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 491*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 492*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 493*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 494*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 495*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 496*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 497*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 498*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 499*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 500*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 501*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 502*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 503*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 504*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 505*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 506*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 507*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 508*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 509*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 510*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>30</integer> 511*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 512*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 513*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 514*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 515*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 516*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 517*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 518*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 519*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 520*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 521*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 522*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 523*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 524*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 525*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 526*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 527*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 528*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 529*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 530*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 531*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 532*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 533*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 534*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>20</integer> 535*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>14</integer> 536*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 537*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 538*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 539*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 540*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 541*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 542*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>22</integer> 543*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 544*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 545*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 546*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 547*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>22</integer> 548*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 549*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 550*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 551*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 552*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 553*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 554*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 555*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 556*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 557*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 558*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 559*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>22</integer> 560*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 561*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 562*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 563*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 564*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 565*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'A'</string> 566*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 567*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'A'</string> 568*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 569*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 570*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'A'</string> 571*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 572*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 573*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 574*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>myArrayAllocation</string> 575*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>2</string> 576*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 577*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 578*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>22</integer> 579*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 580*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 581*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 582*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 583*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 584*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 585*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 586*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 587*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 588*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 589*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 590*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 591*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 592*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 593*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 594*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 595*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 596*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 597*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 598*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 599*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 600*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 601*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 602*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 603*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 604*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 605*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 606*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 607*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 608*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 609*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 610*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 611*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 612*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 613*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>23</integer> 614*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 615*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 616*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 617*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 618*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 619*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 620*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 621*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 622*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 623*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 624*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 625*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 626*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 627*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 628*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 629*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 630*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 631*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 632*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 633*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 634*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 635*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 636*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 637*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 638*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>28</integer> 639*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 640*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 641*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 642*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 643*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 644*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 645*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 646*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 647*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 648*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 649*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 650*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 651*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 652*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 653*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 654*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 655*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 656*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 657*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 658*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 659*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 660*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 661*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 662*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 663*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>23</integer> 664*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 665*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 666*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 667*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 668*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 669*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 670*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 671*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 672*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 673*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 674*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 675*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 676*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 677*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 678*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 679*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 680*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 681*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 682*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 683*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 684*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 685*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 686*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 687*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 688*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 689*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 690*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 691*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 692*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 693*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 694*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 695*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 696*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 697*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 698*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 699*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 700*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 701*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 702*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 703*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 704*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 705*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 706*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 707*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 708*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 709*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 710*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 711*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 712*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 713*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 714*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 715*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 716*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 717*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 718*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 719*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 720*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 721*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 722*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 723*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 724*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 725*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 726*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 727*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 728*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 729*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 730*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 731*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 732*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 733*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 734*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 735*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>40</integer> 736*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 737*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 738*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 739*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 740*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 741*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 742*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Attempt to reallocate memory</string> 743*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 744*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Attempt to reallocate memory</string> 745*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 746*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 747*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 748*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 749*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 750*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 751*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 752*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 753*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 754*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 755*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 756*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 757*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 758*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 759*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>27</integer> 760*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 761*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 762*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 763*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 764*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 765*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 766*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 767*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 768*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 769*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 770*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 771*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 772*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 773*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 774*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 775*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 776*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 777*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 778*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 779*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 780*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 781*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 782*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 783*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 784*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 785*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 786*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 787*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 788*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 789*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 790*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 791*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 792*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 793*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 794*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 795*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 796*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 797*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 798*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 799*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 800*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 801*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 802*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 803*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 804*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 805*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 806*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 807*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 808*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 809*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 810*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 811*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 812*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 813*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 814*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 815*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 816*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 817*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 818*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 819*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 820*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 821*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 822*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 823*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 824*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 825*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 826*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 827*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 828*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 829*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 830*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 831*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 832*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 833*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 834*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 835*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 836*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 837*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 838*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 839*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'tmp' is null</string> 840*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 841*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'tmp' is null</string> 842*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 843*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 844*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 845*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 846*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 847*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 848*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 849*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 850*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 851*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 852*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 853*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 854*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 855*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 856*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 857*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 858*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 859*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 860*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 861*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 862*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 863*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 864*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 865*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 866*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 867*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 868*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 869*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 870*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 871*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 872*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 873*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 874*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 875*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 876*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 877*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 878*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 879*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 880*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 881*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 882*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 883*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 884*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 885*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 886*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 887*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 888*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 889*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 890*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 891*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 892*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 893*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 894*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 895*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 896*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 897*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 898*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 899*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 900*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 901*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 902*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Reallocation failed</string> 903*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 904*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Reallocation failed</string> 905*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 906*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 907*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 908*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 909*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 910*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 911*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 912*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 913*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 914*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 915*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 916*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 917*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 918*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 919*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>28</integer> 920*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 921*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 922*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 923*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 924*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 925*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 926*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 927*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>29</integer> 928*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 929*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 930*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 931*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 932*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>29</integer> 933*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>14</integer> 934*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 935*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 936*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 937*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 938*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 939*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 940*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 941*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 942*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 943*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 944*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>29</integer> 945*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 946*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 947*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 948*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 949*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 950*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'buf'</string> 951*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 952*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'buf'</string> 953*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 954*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 955*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'buf'</string> 956*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 957*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 958*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 959*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>reallocDiagnostics</string> 960*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 961*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 962*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 963*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>29</integer> 964*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 965*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 966*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 967*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 968*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 969*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 970*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 971*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 972*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 973*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 974*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 975*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 976*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 977*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 978*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 979*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 980*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 981*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 982*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 983*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 984*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 985*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 986*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 987*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 988*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 989*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 990*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 991*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 992*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 993*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 994*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 995*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 996*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 997*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 998*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>21</integer> 999*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1000*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1001*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1002*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1003*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1004*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1005*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1006*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1007*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1008*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1009*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 1010*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 1011*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1012*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1013*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1014*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1015*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1016*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1017*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 1018*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 1019*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1020*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1021*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1022*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 1023*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>23</integer> 1024*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1025*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1026*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1027*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1028*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1029*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1030*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'wrapper'</string> 1031*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1032*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'wrapper'</string> 1033*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1034*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1035*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1036*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1037*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1038*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>35</integer> 1039*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1040*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1041*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1042*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 1043*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1044*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'test_wrapper'</string> 1045*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1046*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'test_wrapper'</string> 1047*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1048*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1049*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1050*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1051*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1052*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1053*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1054*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1055*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1056*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>35</integer> 1057*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1058*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1059*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1060*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1061*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>35</integer> 1062*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 1063*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1064*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1065*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1066*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1067*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1068*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1069*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1070*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 1071*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1072*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1073*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1074*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1075*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 1076*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1077*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1078*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1079*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1080*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1081*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1082*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1083*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1084*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1085*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1086*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1087*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1088*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1089*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1090*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1091*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 1092*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1093*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1094*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1095*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1096*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 1097*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1098*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1099*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1100*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1101*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1102*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1103*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1104*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>13</integer> 1105*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1106*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1107*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1108*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1109*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 1110*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1111*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1112*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1113*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1114*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1115*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1116*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1117*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1118*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1119*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1120*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1121*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>13</integer> 1122*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1123*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1124*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1125*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1126*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1127*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1128*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1129*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>13</integer> 1130*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1131*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1132*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1133*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1134*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>23</integer> 1135*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1136*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1137*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1138*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1139*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 1140*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1141*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 1142*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1143*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 1144*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1145*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1146*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1147*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1148*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1149*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1150*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1151*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1152*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1153*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1154*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>13</integer> 1155*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1156*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1157*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1158*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>36</integer> 1159*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 1160*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1161*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1162*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1163*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1164*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1165*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1166*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1167*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 1168*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1169*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1170*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1171*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1172*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 1173*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1174*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1175*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1176*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1177*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1178*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1179*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1180*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1181*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1182*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1183*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1184*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1185*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1186*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1187*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1188*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 1189*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1190*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1191*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1192*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1193*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 1194*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1195*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1196*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1197*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1198*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1199*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1200*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1201*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1202*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1203*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1204*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1205*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1206*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1207*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1208*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1209*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1210*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1211*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1212*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1213*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1214*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1215*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1216*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1217*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1218*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1219*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1220*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1221*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1222*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1223*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1224*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1225*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1226*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1227*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1228*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1229*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1230*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1231*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1232*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1233*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1234*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1235*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1236*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 1237*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1238*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'x' is non-null</string> 1239*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1240*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'x' is non-null</string> 1241*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1242*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1243*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1244*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1245*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1246*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1247*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1248*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1249*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1250*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1251*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1252*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1253*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1254*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1255*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>38</integer> 1256*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1257*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1258*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1259*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1260*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1261*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1262*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1263*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>39</integer> 1264*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1265*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1266*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1267*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1268*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>39</integer> 1269*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 1270*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1271*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1272*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1273*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1274*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1275*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1276*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1277*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1278*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1279*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1280*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 1281*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 1282*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1283*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1284*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1285*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1286*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1287*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1288*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 1289*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 1290*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1291*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1292*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1293*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 1294*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>23</integer> 1295*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1296*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1297*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1298*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1299*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1300*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1301*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 1302*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1303*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 1304*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1305*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1306*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1307*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1308*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1309*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1310*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1311*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1312*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1313*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 1314*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 1315*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1316*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1317*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1318*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 1319*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>21</integer> 1320*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1321*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1322*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1323*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1324*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1325*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1326*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>46</integer> 1327*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1328*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1329*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1330*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1331*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>46</integer> 1332*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1333*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1334*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1335*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1336*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1337*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1338*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1339*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1340*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1341*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1342*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1343*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>46</integer> 1344*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1345*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1346*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1347*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1348*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1349*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'buf'</string> 1350*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1351*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'buf'</string> 1352*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1353*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1354*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'buf'</string> 1355*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 1356*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 1357*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 1358*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>test_wrapper</string> 1359*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 1360*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1361*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1362*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>46</integer> 1363*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1364*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1365*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1366*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1367*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1368*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 1369*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1370*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1371*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1372*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1373*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1374*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1375*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1376*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1377*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1378*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>60</integer> 1379*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1380*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1381*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1382*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1383*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>60</integer> 1384*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 1385*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1386*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1387*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1388*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1389*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1390*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1391*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1392*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1393*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1394*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1395*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1396*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1397*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 1398*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1399*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1400*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1401*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1402*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1403*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1404*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1405*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1406*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1407*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1408*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1409*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1410*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1411*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1412*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1413*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1414*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1415*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1416*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1417*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1418*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1419*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1420*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1421*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1422*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>28</integer> 1423*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1424*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1425*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1426*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1427*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1428*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1429*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_malloc_and_free'</string> 1430*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1431*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_malloc_and_free'</string> 1432*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1433*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1434*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1435*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1436*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1437*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>53</integer> 1438*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1439*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1440*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1441*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 1442*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1443*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'test_double_action_call'</string> 1444*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1445*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'test_double_action_call'</string> 1446*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1447*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1448*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1449*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1450*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1451*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1452*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1453*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1454*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1455*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>53</integer> 1456*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1457*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1458*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1459*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1460*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>53</integer> 1461*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 1462*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1463*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1464*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1465*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1466*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1467*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1468*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1469*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1470*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1471*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1472*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1473*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1474*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1475*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1476*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1477*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1478*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1479*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1480*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1481*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1482*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1483*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1484*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1485*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1486*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1487*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1488*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1489*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1490*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1491*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1492*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1493*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1494*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1495*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1496*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1497*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1498*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1499*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1500*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1501*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1502*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1503*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 1504*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1505*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1506*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1507*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1508*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 1509*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1510*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1511*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1512*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1513*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1514*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1515*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1516*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1517*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1518*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1519*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1520*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 1521*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1522*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1523*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1524*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1525*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1526*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1527*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1528*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 1529*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1530*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1531*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1532*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1533*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 1534*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1535*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1536*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1537*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1538*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 1539*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1540*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 1541*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1542*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 1543*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1544*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1545*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1546*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1547*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1548*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1549*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1550*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1551*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1552*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1553*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 1554*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1555*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1556*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1557*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>54</integer> 1558*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 1559*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1560*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1561*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1562*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1563*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1564*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1565*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>55</integer> 1566*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1567*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1568*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1569*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1570*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>55</integer> 1571*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 1572*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1573*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1574*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1575*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1576*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1577*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1578*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1579*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1580*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1581*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1582*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1583*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1584*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1585*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1586*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>55</integer> 1587*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1588*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1589*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1590*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1591*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>55</integer> 1592*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 1593*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1594*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1595*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1596*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1597*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1598*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1599*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1600*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1601*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1602*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1603*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1604*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1605*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>13</integer> 1606*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1607*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1608*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1609*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1610*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1611*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1612*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1613*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1614*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1615*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1616*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1617*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1618*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1619*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1620*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1621*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1622*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1623*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1624*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1625*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1626*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1627*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1628*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1629*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1630*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>17</integer> 1631*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1632*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1633*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1634*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1635*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 1636*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1637*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_free'</string> 1638*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1639*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_free'</string> 1640*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1641*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1642*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1643*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1644*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1645*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>50</integer> 1646*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1647*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1648*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1649*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>2</integer> 1650*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1651*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'my_malloc_and_free'</string> 1652*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1653*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'my_malloc_and_free'</string> 1654*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1655*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1656*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1657*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1658*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1659*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1660*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1661*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1662*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1663*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>50</integer> 1664*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 1665*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1666*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1667*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1668*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>50</integer> 1669*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 1670*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1671*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1672*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1673*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1674*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1675*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1676*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>51</integer> 1677*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1678*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1679*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1680*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1681*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>51</integer> 1682*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 1683*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1684*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1685*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1686*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1687*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1688*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1689*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1690*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1691*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1692*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1693*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>51</integer> 1694*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1695*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1696*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1697*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1698*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1699*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1700*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1701*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>51</integer> 1702*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1703*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1704*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1705*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1706*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>51</integer> 1707*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 1708*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1709*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1710*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1711*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1712*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>2</integer> 1713*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1714*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is released</string> 1715*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1716*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is released</string> 1717*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1718*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1719*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1720*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1721*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1722*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1723*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1724*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1725*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1726*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1727*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1728*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1729*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1730*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1731*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1732*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1733*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1734*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1735*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1736*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>17</integer> 1737*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1738*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1739*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1740*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1741*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 1742*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1743*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returning; memory was released via 1st parameter</string> 1744*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1745*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returning; memory was released via 1st parameter</string> 1746*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1747*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1748*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1749*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1750*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1751*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1752*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1753*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1754*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1755*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1756*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1757*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1758*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1759*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1760*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>56</integer> 1761*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>13</integer> 1762*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1763*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1764*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1765*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1766*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1767*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1768*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>57</integer> 1769*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1770*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1771*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1772*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1773*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>57</integer> 1774*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 1775*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1776*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1777*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1778*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1779*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1780*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1781*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1782*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1783*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1784*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1785*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1786*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1787*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1788*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1789*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1790*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1791*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1792*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1793*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1794*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1795*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1796*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1797*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1798*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1799*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>28</integer> 1800*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1801*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1802*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1803*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1804*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1805*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1806*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returning; memory was released via 1st parameter</string> 1807*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1808*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returning; memory was released via 1st parameter</string> 1809*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1810*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1811*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1812*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1813*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1814*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1815*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1816*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1817*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1818*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1819*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1820*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1821*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1822*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1823*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>61</integer> 1824*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 1825*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1826*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1827*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1828*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1829*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1830*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1831*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1832*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1833*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1834*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1835*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1836*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1837*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 1838*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1839*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1840*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1841*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1842*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1843*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1844*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1845*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1846*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1847*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1848*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1849*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1850*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1851*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1852*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1853*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1854*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1855*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1856*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1857*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 1858*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1859*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1860*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1861*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1862*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>14</integer> 1863*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1864*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1865*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1866*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1867*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1868*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1869*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Use of memory after it is freed</string> 1870*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1871*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Use of memory after it is freed</string> 1872*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1873*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1874*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Use of memory after it is freed</string> 1875*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 1876*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Use-after-free</string> 1877*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 1878*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>test_double_action_call</string> 1879*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>3</string> 1880*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1881*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1882*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1883*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1884*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1885*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1886*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1887*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1888*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 1889*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1890*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1891*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1892*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1893*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1894*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1895*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1896*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1897*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1898*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>75</integer> 1899*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1900*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1901*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1902*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1903*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>75</integer> 1904*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 1905*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1906*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1907*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1908*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1909*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1910*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1911*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>75</integer> 1912*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 1913*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1914*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1915*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1916*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>75</integer> 1917*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>30</integer> 1918*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1919*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1920*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1921*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1922*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1923*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1924*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1925*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1926*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1927*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1928*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>75</integer> 1929*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 1930*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1931*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1932*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1933*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1934*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1935*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1936*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>75</integer> 1937*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 1938*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1939*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1940*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1941*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>75</integer> 1942*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>35</integer> 1943*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1944*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1945*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1946*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1947*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1948*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1949*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 1950*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1951*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 1952*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1953*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1954*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1955*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1956*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1957*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1958*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1959*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1960*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1961*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>75</integer> 1962*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 1963*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1964*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1965*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1966*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>75</integer> 1967*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>30</integer> 1968*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1969*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1970*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1971*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1972*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1973*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1974*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 1975*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 1976*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1977*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1978*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1979*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 1980*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 1981*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1982*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1983*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1984*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1985*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1986*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1987*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1988*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1989*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1990*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1991*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 1992*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 1993*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1994*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1995*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1996*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1997*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1998*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1999*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 2000*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 2001*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2002*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2003*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2004*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 2005*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 2006*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2007*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2008*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2009*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2010*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 2011*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2012*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_realloc'</string> 2013*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2014*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_realloc'</string> 2015*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2016*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2017*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2018*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2019*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2020*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>66</integer> 2021*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2022*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2023*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2024*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 2025*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2026*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'reallocIntra'</string> 2027*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2028*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'reallocIntra'</string> 2029*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2030*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2031*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2032*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2033*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2034*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2035*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2036*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2037*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2038*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>66</integer> 2039*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2040*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2041*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2042*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2043*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>66</integer> 2044*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 2045*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2046*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2047*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2048*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2049*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2050*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2051*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>67</integer> 2052*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2053*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2054*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2055*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2056*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>67</integer> 2057*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 2058*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2059*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2060*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2061*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2062*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2063*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2064*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2065*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2066*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2067*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2068*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2069*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2070*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2071*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2072*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>67</integer> 2073*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2074*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2075*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2076*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2077*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>67</integer> 2078*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 2079*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2080*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2081*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2082*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2083*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2084*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2085*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2086*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2087*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2088*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2089*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2090*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2091*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 2092*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2093*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2094*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2095*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2096*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2097*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2098*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2099*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2100*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2101*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2102*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2103*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2104*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2105*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2106*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2107*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2108*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2109*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2110*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2111*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2112*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 2113*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2114*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2115*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2116*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2117*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2118*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2119*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2120*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 2121*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2122*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2123*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2124*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2125*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 2126*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2127*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2128*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2129*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2130*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2131*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2132*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2133*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2134*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2135*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2136*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2137*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 2138*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2139*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2140*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2141*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2142*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2143*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2144*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2145*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 2146*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2147*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2148*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2149*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2150*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>40</integer> 2151*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2152*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2153*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2154*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2155*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 2156*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2157*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Attempt to reallocate memory</string> 2158*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2159*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Attempt to reallocate memory</string> 2160*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2161*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2162*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2163*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2164*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2165*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2166*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2167*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2168*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2169*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2170*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 2171*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2172*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2173*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2174*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 2175*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 2176*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2177*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2178*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2179*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2180*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2181*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2182*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2183*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2184*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2185*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2186*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2187*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2188*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 2189*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2190*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2191*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2192*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2193*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2194*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2195*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2196*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2197*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2198*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2199*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2200*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2201*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2202*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2203*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2204*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2205*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2206*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2207*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2208*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2209*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 2210*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2211*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2212*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2213*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2214*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2215*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2216*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2217*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2218*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2219*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2220*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2221*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2222*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2223*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2224*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2225*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2226*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2227*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2228*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2229*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2230*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2231*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2232*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2233*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2234*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2235*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2236*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2237*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2238*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2239*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2240*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2241*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2242*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2243*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2244*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2245*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2246*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2247*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 2248*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2249*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2250*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2251*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2252*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 2253*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2254*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'tmp' is null</string> 2255*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2256*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'tmp' is null</string> 2257*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2258*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2259*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2260*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2261*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2262*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2263*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2264*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2265*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2266*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2267*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2268*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2269*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2270*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2271*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2272*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2273*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2274*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2275*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2276*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2277*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2278*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2279*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2280*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2281*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2282*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2283*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2284*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2285*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 2286*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2287*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2288*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2289*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2290*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2291*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2292*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2293*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2294*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2295*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2296*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2297*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2298*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2299*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2300*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2301*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2302*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2303*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2304*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2305*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2306*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2307*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2308*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2309*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2310*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 2311*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2312*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2313*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2314*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2315*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 2316*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2317*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Reallocation failed</string> 2318*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2319*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Reallocation failed</string> 2320*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2321*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2322*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2323*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2324*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2325*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2326*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2327*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2328*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2329*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2330*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2331*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2332*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2333*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2334*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>69</integer> 2335*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 2336*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2337*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2338*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2339*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2340*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2341*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2342*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>70</integer> 2343*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2344*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2345*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2346*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2347*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>70</integer> 2348*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>14</integer> 2349*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2350*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2351*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2352*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2353*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2354*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2355*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2356*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2357*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2358*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2359*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 2360*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 2361*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2362*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2363*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2364*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2365*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2366*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2367*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 2368*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 2369*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2370*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2371*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2372*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 2373*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 2374*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2375*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2376*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2377*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2378*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 2379*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2380*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Reallocation of 1st parameter failed</string> 2381*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2382*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Reallocation of 1st parameter failed</string> 2383*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2384*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2385*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2386*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2387*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2388*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2389*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2390*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2391*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2392*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 2393*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 2394*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2395*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2396*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2397*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>76</integer> 2398*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 2399*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2400*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2401*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2402*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2403*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2404*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2405*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>77</integer> 2406*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2407*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2408*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2409*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2410*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>77</integer> 2411*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 2412*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2413*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2414*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2415*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2416*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2417*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2418*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2419*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2420*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2421*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2422*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>77</integer> 2423*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2424*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2425*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2426*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 2427*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2428*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'buf'</string> 2429*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2430*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'buf'</string> 2431*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2432*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2433*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'buf'</string> 2434*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 2435*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 2436*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 2437*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>reallocIntra</string> 2438*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 2439*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2440*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2441*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>77</integer> 2442*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2443*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2444*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2445*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2446*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2447*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 2448*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2449*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2450*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2451*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2452*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2453*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2454*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2455*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2456*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2457*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>85</integer> 2458*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2459*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2460*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2461*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2462*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>85</integer> 2463*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 2464*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2465*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2466*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2467*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2468*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2469*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2470*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2471*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2472*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2473*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2474*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2475*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2476*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>26</integer> 2477*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2478*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2479*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2480*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2481*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2482*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2483*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2484*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2485*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2486*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2487*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2488*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2489*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2490*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2491*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2492*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2493*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2494*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2495*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2496*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2497*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2498*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2499*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2500*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2501*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>28</integer> 2502*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2503*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2504*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2505*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2506*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 2507*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2508*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'malloc_wrapper_ret'</string> 2509*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2510*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'malloc_wrapper_ret'</string> 2511*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2512*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2513*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2514*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2515*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2516*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>81</integer> 2517*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2518*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2519*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2520*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 2521*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2522*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_ret'</string> 2523*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2524*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_ret'</string> 2525*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2526*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2527*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2528*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2529*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2530*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2531*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2532*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2533*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2534*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>81</integer> 2535*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2536*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2537*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2538*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2539*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>81</integer> 2540*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 2541*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2542*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2543*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2544*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2545*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2546*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2547*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>82</integer> 2548*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2549*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2550*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2551*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2552*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>82</integer> 2553*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 2554*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2555*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2556*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2557*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2558*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2559*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2560*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2561*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2562*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2563*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2564*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2565*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2566*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2567*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2568*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>82</integer> 2569*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2570*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2571*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2572*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2573*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>82</integer> 2574*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 2575*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2576*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2577*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2578*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2579*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2580*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2581*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>82</integer> 2582*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 2583*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2584*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2585*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2586*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>82</integer> 2587*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 2588*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2589*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2590*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2591*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2592*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2593*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2594*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2595*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2596*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2597*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2598*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>82</integer> 2599*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 2600*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2601*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2602*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2603*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2604*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2605*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2606*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>82</integer> 2607*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 2608*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2609*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2610*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2611*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>82</integer> 2612*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>28</integer> 2613*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2614*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2615*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2616*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2617*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 2618*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2619*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 2620*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2621*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 2622*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2623*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2624*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2625*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2626*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2627*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2628*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2629*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2630*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2631*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2632*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2633*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2634*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2635*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2636*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2637*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2638*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2639*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2640*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2641*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>28</integer> 2642*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2643*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2644*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2645*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2646*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 2647*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2648*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 2649*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2650*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 2651*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2652*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2653*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2654*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2655*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2656*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2657*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2658*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2659*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2660*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2661*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 2662*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2663*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2664*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2665*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>86</integer> 2666*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>26</integer> 2667*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2668*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2669*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2670*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2671*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2672*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2673*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>87</integer> 2674*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2675*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2676*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2677*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2678*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>87</integer> 2679*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2680*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2681*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2682*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2683*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2684*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2685*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2686*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2687*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2688*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2689*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2690*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>87</integer> 2691*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2692*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2693*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2694*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 2695*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2696*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'v'</string> 2697*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2698*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'v'</string> 2699*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2700*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2701*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'v'</string> 2702*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 2703*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 2704*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 2705*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>use_ret</string> 2706*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>2</string> 2707*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2708*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2709*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>87</integer> 2710*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2711*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2712*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2713*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2714*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2715*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 2716*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2717*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2718*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2719*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2720*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2721*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2722*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2723*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2724*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2725*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>91</integer> 2726*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2727*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2728*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2729*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2730*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>91</integer> 2731*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 2732*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2733*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2734*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2735*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2736*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2737*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2738*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2739*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2740*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2741*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2742*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2743*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2744*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2745*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2746*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2747*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2748*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2749*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2750*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2751*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2752*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2753*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2754*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2755*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2756*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2757*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2758*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2759*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2760*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2761*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2762*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2763*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2764*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2765*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2766*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2767*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2768*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2769*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2770*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2771*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2772*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2773*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 2774*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2775*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2776*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2777*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2778*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 2779*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2780*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2781*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2782*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2783*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2784*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2785*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2786*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2787*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2788*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2789*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2790*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 2791*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2792*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2793*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2794*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2795*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2796*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2797*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2798*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 2799*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2800*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2801*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2802*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2803*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 2804*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2805*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2806*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2807*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2808*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 2809*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2810*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 2811*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2812*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 2813*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2814*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2815*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2816*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2817*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2818*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2819*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2820*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2821*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2822*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2823*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>15</integer> 2824*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2825*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2826*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2827*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>93</integer> 2828*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 2829*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2830*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2831*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2832*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2833*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2834*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2835*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>98</integer> 2836*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2837*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2838*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2839*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2840*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>98</integer> 2841*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 2842*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2843*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2844*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2845*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2846*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2847*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2848*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2849*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2850*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2851*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2852*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>98</integer> 2853*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2854*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2855*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2856*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 2857*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2858*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'm'</string> 2859*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2860*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'm'</string> 2861*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2862*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2863*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'm'</string> 2864*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 2865*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 2866*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 2867*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>LeakedSymbol</string> 2868*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>3</string> 2869*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2870*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2871*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>98</integer> 2872*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2873*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2874*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2875*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2876*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2877*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 2878*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2879*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2880*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2881*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2882*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2883*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>106</integer> 2884*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2885*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2886*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2887*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2888*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2889*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2890*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2891*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>106</integer> 2892*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2893*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2894*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2895*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2896*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>106</integer> 2897*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 2898*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2899*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2900*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2901*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2902*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 2903*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2904*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak1'</string> 2905*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2906*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak1'</string> 2907*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2908*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2909*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2910*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2911*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2912*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>102</integer> 2913*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2914*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2915*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2916*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 2917*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 2918*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak1'</string> 2919*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 2920*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak1'</string> 2921*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2922*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2923*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2924*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2925*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2926*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2927*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2928*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2929*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2930*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>102</integer> 2931*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 2932*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2933*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2934*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2935*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>102</integer> 2936*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 2937*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2938*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2939*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2940*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2941*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2942*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2943*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 2944*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2945*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2946*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2947*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2948*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 2949*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 2950*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2951*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2952*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2953*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2954*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2955*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2956*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2957*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 2958*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 2959*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2960*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2961*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 2962*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2963*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2964*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 2965*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 2966*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2967*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2968*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2969*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 2970*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 2971*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2972*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2973*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2974*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 2975*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 2976*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2977*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 2978*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 2979*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2980*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2981*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2982*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 2983*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 2984*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2985*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2986*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2987*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2988*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 2989*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2990*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2991*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 2992*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 2993*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 2994*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 2995*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 2996*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 2997*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 2998*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 2999*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3000*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3001*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3002*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 3003*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3004*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3005*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3006*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3007*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 3008*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>31</integer> 3009*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3010*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3011*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3012*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3013*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3014*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3015*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 3016*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3017*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 3018*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3019*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3020*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3021*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3022*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3023*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3024*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3025*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3026*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3027*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 3028*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3029*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3030*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3031*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3032*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>103</integer> 3033*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 3034*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3035*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3036*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3037*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3038*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3039*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3040*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>104</integer> 3041*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3042*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3043*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3044*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3045*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>104</integer> 3046*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3047*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3048*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3049*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3050*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3051*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3052*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3053*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3054*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3055*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3056*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3057*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>104</integer> 3058*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3059*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3060*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3061*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3062*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3063*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 3064*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3065*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 3066*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3067*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3068*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'x'</string> 3069*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 3070*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 3071*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 3072*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>function_with_leak1</string> 3073*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 3074*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3075*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3076*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>104</integer> 3077*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3078*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3079*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3080*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3081*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3082*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 3083*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3084*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3085*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3086*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3087*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3088*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>115</integer> 3089*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3090*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3091*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3092*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 3093*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3094*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3095*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3096*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>115</integer> 3097*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3098*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3099*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3100*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3101*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>115</integer> 3102*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 3103*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3104*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3105*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3106*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3107*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 3108*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3109*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak2'</string> 3110*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3111*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak2'</string> 3112*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3113*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3114*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3115*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3116*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3117*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>110</integer> 3118*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3119*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3120*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3121*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3122*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3123*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak2'</string> 3124*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3125*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak2'</string> 3126*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3127*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3128*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3129*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3130*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3131*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3132*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3133*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3134*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3135*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>110</integer> 3136*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3137*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3138*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3139*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3140*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>110</integer> 3141*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 3142*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3143*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3144*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3145*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3146*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3147*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3148*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3149*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3150*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3151*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3152*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3153*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3154*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 3155*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3156*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3157*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3158*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3159*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3160*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3161*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3162*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3163*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3164*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3165*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3166*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3167*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3168*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3169*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3170*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3171*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3172*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3173*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3174*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3175*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 3176*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3177*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3178*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3179*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3180*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3181*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3182*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3183*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3184*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3185*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3186*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3187*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3188*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 3189*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3190*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3191*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3192*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3193*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3194*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3195*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3196*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3197*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3198*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3199*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3200*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3201*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3202*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3203*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 3204*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3205*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3206*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3207*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3208*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3209*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3210*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3211*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3212*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3213*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>31</integer> 3214*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3215*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3216*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3217*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3218*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3219*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3220*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 3221*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3222*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 3223*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3224*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3225*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3226*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3227*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3228*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3229*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3230*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3231*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3232*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3233*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3234*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3235*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3236*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3237*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>111</integer> 3238*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 3239*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3240*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3241*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3242*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3243*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3244*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3245*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>112</integer> 3246*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3247*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3248*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3249*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3250*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>112</integer> 3251*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 3252*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3253*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3254*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3255*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3256*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3257*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3258*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3259*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3260*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3261*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3262*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>112</integer> 3263*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3264*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3265*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3266*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3267*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3268*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 3269*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3270*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 3271*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3272*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3273*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'x'</string> 3274*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 3275*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 3276*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 3277*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>function_with_leak2</string> 3278*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 3279*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3280*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3281*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>112</integer> 3282*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3283*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3284*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3285*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3286*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3287*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 3288*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3289*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3290*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3291*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3292*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3293*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>124</integer> 3294*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3295*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3296*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3297*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 3298*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3299*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3300*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3301*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>124</integer> 3302*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3303*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3304*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3305*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3306*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>124</integer> 3307*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>26</integer> 3308*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3309*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3310*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3311*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3312*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 3313*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3314*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak3'</string> 3315*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3316*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak3'</string> 3317*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3318*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3319*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3320*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3321*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3322*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>118</integer> 3323*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3324*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3325*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3326*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3327*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3328*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak3'</string> 3329*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3330*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak3'</string> 3331*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3332*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3333*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3334*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3335*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3336*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3337*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3338*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3339*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3340*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>118</integer> 3341*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3342*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3343*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3344*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3345*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>118</integer> 3346*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 3347*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3348*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3349*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3350*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3351*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3352*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3353*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3354*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3355*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3356*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3357*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3358*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3359*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 3360*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3361*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3362*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3363*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3364*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3365*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3366*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3367*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3368*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3369*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3370*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3371*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3372*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3373*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3374*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3375*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3376*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3377*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3378*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3379*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3380*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 3381*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3382*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3383*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3384*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3385*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3386*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3387*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3388*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3389*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3390*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3391*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3392*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3393*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 3394*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3395*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3396*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3397*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3398*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3399*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3400*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3401*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3402*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3403*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3404*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3405*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3406*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3407*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3408*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 3409*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3410*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3411*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3412*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3413*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3414*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3415*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3416*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3417*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3418*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>31</integer> 3419*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3420*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3421*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3422*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3423*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3424*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3425*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 3426*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3427*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 3428*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3429*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3430*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3431*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3432*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3433*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3434*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3435*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3436*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3437*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3438*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3439*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3440*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3441*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3442*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>119</integer> 3443*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 3444*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3445*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3446*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3447*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3448*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3449*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3450*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3451*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3452*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3453*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3454*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3455*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3456*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 3457*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3458*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3459*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3460*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3461*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3462*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3463*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3464*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3465*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3466*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3467*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3468*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3469*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3470*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3471*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3472*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3473*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3474*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3475*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3476*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3477*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 3478*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3479*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3480*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3481*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3482*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3483*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3484*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3485*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3486*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3487*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3488*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3489*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3490*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3491*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3492*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3493*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3494*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3495*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3496*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3497*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3498*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3499*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3500*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3501*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3502*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3503*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3504*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3505*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 3506*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3507*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3508*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3509*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3510*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3511*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3512*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3513*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3514*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3515*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3516*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3517*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3518*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3519*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3520*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3521*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3522*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'y' is not equal to 0</string> 3523*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3524*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'y' is not equal to 0</string> 3525*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3526*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3527*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3528*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3529*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3530*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3531*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3532*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3533*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3534*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3535*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3536*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3537*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3538*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3539*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>120</integer> 3540*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3541*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3542*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3543*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3544*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3545*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3546*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3547*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>121</integer> 3548*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3549*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3550*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3551*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3552*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>121</integer> 3553*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3554*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3555*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3556*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3557*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3558*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3559*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3560*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3561*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3562*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3563*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3564*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>121</integer> 3565*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3566*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3567*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3568*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3569*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3570*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 3571*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3572*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 3573*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3574*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3575*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'x'</string> 3576*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 3577*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 3578*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 3579*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>function_with_leak3</string> 3580*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 3581*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3582*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3583*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>121</integer> 3584*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3585*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3586*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3587*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3588*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3589*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 3590*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3591*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3592*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3593*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3594*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3595*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>135</integer> 3596*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3597*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3598*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3599*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 3600*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3601*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3602*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3603*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>135</integer> 3604*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3605*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3606*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3607*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3608*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>135</integer> 3609*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>26</integer> 3610*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3611*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3612*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3613*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3614*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 3615*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3616*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak4'</string> 3617*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3618*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak4'</string> 3619*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3620*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3621*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3622*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3623*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3624*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>127</integer> 3625*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3626*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3627*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3628*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3629*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3630*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak4'</string> 3631*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3632*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak4'</string> 3633*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3634*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3635*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3636*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3637*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3638*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3639*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3640*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3641*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3642*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>127</integer> 3643*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3644*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3645*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3646*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3647*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>127</integer> 3648*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 3649*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3650*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3651*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3652*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3653*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3654*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3655*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3656*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3657*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3658*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3659*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3660*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3661*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 3662*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3663*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3664*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3665*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3666*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3667*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3668*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3669*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3670*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3671*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3672*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3673*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3674*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3675*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3676*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3677*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3678*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3679*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3680*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3681*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3682*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 3683*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3684*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3685*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3686*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3687*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3688*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3689*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3690*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3691*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3692*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3693*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3694*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3695*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 3696*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3697*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3698*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3699*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3700*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3701*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3702*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3703*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3704*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3705*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3706*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3707*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3708*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3709*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3710*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 3711*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3712*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3713*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3714*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3715*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3716*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3717*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3718*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3719*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3720*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>31</integer> 3721*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3722*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3723*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3724*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3725*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3726*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3727*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 3728*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3729*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 3730*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3731*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3732*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3733*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3734*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3735*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3736*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3737*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3738*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3739*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3740*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3741*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3742*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3743*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3744*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>128</integer> 3745*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 3746*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3747*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3748*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3749*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3750*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3751*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3752*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3753*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3754*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3755*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3756*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3757*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3758*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 3759*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3760*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3761*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3762*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3763*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3764*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3765*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3766*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3767*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3768*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3769*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3770*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3771*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3772*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3773*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3774*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3775*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3776*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3777*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3778*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3779*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 3780*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3781*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3782*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3783*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3784*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3785*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3786*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3787*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3788*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3789*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3790*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3791*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3792*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3793*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3794*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3795*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3796*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3797*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3798*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3799*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3800*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3801*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3802*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3803*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3804*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3805*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3806*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3807*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 3808*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3809*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3810*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3811*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3812*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3813*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3814*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3815*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3816*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3817*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3818*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3819*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3820*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3821*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3822*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3823*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3824*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'y' is 0</string> 3825*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3826*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'y' is 0</string> 3827*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3828*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3829*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3830*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3831*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3832*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3833*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3834*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3835*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3836*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3837*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3838*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3839*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3840*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3841*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>129</integer> 3842*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3843*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3844*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3845*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3846*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3847*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3848*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3849*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>132</integer> 3850*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3851*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3852*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3853*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3854*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>132</integer> 3855*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3856*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3857*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3858*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3859*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3860*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3861*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3862*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3863*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3864*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3865*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3866*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>132</integer> 3867*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3868*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3869*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3870*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3871*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3872*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 3873*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3874*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 3875*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3876*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3877*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'x'</string> 3878*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 3879*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 3880*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 3881*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>function_with_leak4</string> 3882*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 3883*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3884*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3885*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>132</integer> 3886*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 3887*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3888*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3889*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3890*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3891*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 3892*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3893*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3894*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3895*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3896*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3897*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>146</integer> 3898*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3899*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3900*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3901*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 3902*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3903*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3904*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3905*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>146</integer> 3906*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3907*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3908*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3909*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3910*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>146</integer> 3911*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 3912*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3913*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3914*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3915*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3916*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 3917*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3918*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak5'</string> 3919*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3920*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak5'</string> 3921*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3922*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3923*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 3924*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 3925*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3926*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>141</integer> 3927*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3928*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3929*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3930*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 3931*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 3932*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak5'</string> 3933*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 3934*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak5'</string> 3935*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3936*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3937*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3938*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3939*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3940*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3941*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3942*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3943*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3944*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>141</integer> 3945*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 3946*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3947*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3948*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3949*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>141</integer> 3950*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 3951*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3952*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3953*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3954*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3955*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3956*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3957*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 3958*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3959*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3960*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3961*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3962*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 3963*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 3964*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3965*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3966*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3967*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3968*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3969*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3970*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3971*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 3972*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 3973*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3974*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3975*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 3976*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3977*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3978*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 3979*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 3980*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3981*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3982*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3983*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 3984*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 3985*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3986*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3987*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 3988*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 3989*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 3990*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3991*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 3992*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 3993*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3994*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 3995*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 3996*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 3997*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 3998*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 3999*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4000*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4001*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4002*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4003*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4004*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4005*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4006*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4007*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4008*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 4009*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 4010*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4011*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4012*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4013*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4014*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4015*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4016*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 4017*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 4018*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4019*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4020*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4021*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 4022*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>31</integer> 4023*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4024*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4025*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4026*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4027*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4028*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4029*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4030*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4031*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4032*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4033*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4034*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4035*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4036*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4037*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4038*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4039*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4040*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4041*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 4042*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 4043*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4044*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4045*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4046*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>142</integer> 4047*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 4048*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4049*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4050*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4051*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4052*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4053*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4054*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>143</integer> 4055*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 4056*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4057*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4058*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4059*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>143</integer> 4060*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 4061*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4062*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4063*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4064*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4065*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4066*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4067*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4068*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4069*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4070*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4071*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>143</integer> 4072*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 4073*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4074*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4075*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4076*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4077*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 4078*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4079*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 4080*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4081*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4082*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'x'</string> 4083*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 4084*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 4085*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 4086*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>function_with_leak5</string> 4087*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 4088*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4089*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4090*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>143</integer> 4091*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 4092*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4093*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4094*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4095*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4096*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 4097*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4098*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4099*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4100*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4101*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4102*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>157</integer> 4103*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4104*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4105*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4106*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4107*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4108*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4109*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4110*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>157</integer> 4111*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4112*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4113*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4114*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4115*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>157</integer> 4116*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 4117*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4118*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4119*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4120*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4121*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 4122*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4123*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak6'</string> 4124*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4125*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak6'</string> 4126*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4127*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4128*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4129*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4130*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4131*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>152</integer> 4132*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4133*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4134*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4135*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4136*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4137*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak6'</string> 4138*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4139*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak6'</string> 4140*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4141*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4142*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4143*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4144*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4145*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4146*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4147*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4148*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4149*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>152</integer> 4150*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4151*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4152*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4153*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4154*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>152</integer> 4155*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 4156*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4157*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4158*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4159*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4160*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4161*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4162*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4163*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4164*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4165*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4166*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4167*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4168*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 4169*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4170*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4171*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4172*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4173*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4174*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4175*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4176*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4177*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4178*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4179*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4180*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4181*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4182*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4183*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4184*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4185*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4186*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4187*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4188*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4189*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 4190*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4191*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4192*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4193*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4194*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4195*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4196*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4197*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 4198*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4199*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4200*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4201*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4202*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 4203*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4204*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4205*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4206*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4207*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4208*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4209*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4210*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4211*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4212*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4213*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4214*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 4215*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4216*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4217*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4218*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4219*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4220*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4221*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4222*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 4223*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4224*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4225*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4226*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4227*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>31</integer> 4228*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4229*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4230*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4231*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4232*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4233*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4234*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4235*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4236*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4237*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4238*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4239*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4240*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4241*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4242*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4243*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4244*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4245*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4246*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4247*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>22</integer> 4248*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4249*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4250*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4251*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>153</integer> 4252*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>27</integer> 4253*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4254*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4255*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4256*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4257*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4258*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4259*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>154</integer> 4260*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4261*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4262*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4263*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4264*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>154</integer> 4265*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 4266*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4267*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4268*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4269*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4270*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4271*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4272*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4273*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4274*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4275*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4276*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>154</integer> 4277*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4278*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4279*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4280*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4281*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4282*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 4283*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4284*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential leak of memory pointed to by 'x'</string> 4285*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4286*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4287*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by 'x'</string> 4288*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 4289*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 4290*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 4291*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>function_with_leak6</string> 4292*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 4293*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4294*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4295*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>154</integer> 4296*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4297*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4298*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4299*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4300*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4301*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 4302*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4303*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4304*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4305*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4306*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4307*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>169</integer> 4308*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4309*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4310*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4311*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4312*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4313*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4314*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4315*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>169</integer> 4316*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4317*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4318*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4319*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4320*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>169</integer> 4321*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 4322*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4323*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4324*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4325*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4326*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 4327*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4328*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak7'</string> 4329*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4330*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'function_with_leak7'</string> 4331*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4332*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4333*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4334*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4335*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4336*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>165</integer> 4337*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4338*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4339*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4340*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4341*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4342*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak7'</string> 4343*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4344*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'use_function_with_leak7'</string> 4345*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4346*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4347*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4348*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4349*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4350*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4351*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4352*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4353*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4354*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>165</integer> 4355*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4356*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4357*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4358*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4359*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>165</integer> 4360*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 4361*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4362*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4363*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4364*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4365*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4366*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4367*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>166</integer> 4368*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4369*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4370*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4371*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4372*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>166</integer> 4373*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 4374*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4375*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4376*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4377*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4378*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4379*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4380*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4381*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4382*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4383*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4384*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4385*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4386*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4387*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4388*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>166</integer> 4389*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4390*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4391*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4392*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4393*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>166</integer> 4394*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>10</integer> 4395*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4396*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4397*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4398*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4399*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4400*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4401*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>166</integer> 4402*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 4403*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4404*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4405*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4406*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>166</integer> 4407*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 4408*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4409*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4410*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4411*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4412*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4413*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4414*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4415*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4416*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4417*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4418*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>166</integer> 4419*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 4420*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4421*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4422*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4423*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4424*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4425*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4426*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>166</integer> 4427*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 4428*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4429*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4430*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4431*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>166</integer> 4432*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>28</integer> 4433*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4434*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4435*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4436*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4437*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4438*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4439*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4440*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4441*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4442*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4443*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4444*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4445*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4446*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4447*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>169</integer> 4448*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4449*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4450*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4451*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4452*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4453*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4454*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4455*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>169</integer> 4456*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4457*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4458*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4459*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4460*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>169</integer> 4461*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 4462*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4463*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4464*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4465*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4466*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 4467*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4468*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 4469*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4470*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 4471*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4472*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4473*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4474*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4475*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4476*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4477*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4478*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4479*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4480*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>169</integer> 4481*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4482*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4483*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4484*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4485*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>169</integer> 4486*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>23</integer> 4487*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4488*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4489*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4490*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4491*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4492*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4493*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>170</integer> 4494*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4495*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4496*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4497*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4498*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>170</integer> 4499*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4500*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4501*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4502*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4503*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4504*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4505*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4506*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4507*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4508*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4509*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4510*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>170</integer> 4511*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4512*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4513*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4514*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 4515*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4516*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential memory leak</string> 4517*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4518*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential memory leak</string> 4519*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4520*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4521*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential memory leak</string> 4522*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 4523*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 4524*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 4525*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>use_function_with_leak7</string> 4526*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 4527*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4528*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4529*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>170</integer> 4530*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4531*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4532*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4533*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4534*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4535*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 4536*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4537*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4538*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4539*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4540*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4541*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>179</integer> 4542*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4543*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4544*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4545*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4546*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4547*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4548*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4549*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>179</integer> 4550*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4551*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4552*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4553*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4554*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>179</integer> 4555*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>13</integer> 4556*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4557*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4558*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4559*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4560*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 4561*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4562*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_malloc'</string> 4563*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4564*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_malloc'</string> 4565*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4566*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4567*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4568*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4569*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4570*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>174</integer> 4571*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4572*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4573*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4574*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4575*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4576*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'testOnlyRefferToVisibleVariables'</string> 4577*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4578*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'testOnlyRefferToVisibleVariables'</string> 4579*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4580*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4581*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4582*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4583*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4584*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4585*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4586*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4587*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4588*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>174</integer> 4589*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4590*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4591*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4592*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4593*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>174</integer> 4594*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4595*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4596*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4597*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4598*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4599*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4600*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4601*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>175</integer> 4602*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4603*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4604*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4605*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4606*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>175</integer> 4607*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4608*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4609*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4610*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4611*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4612*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4613*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4614*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4615*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4616*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4617*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4618*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4619*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4620*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4621*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4622*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>175</integer> 4623*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4624*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4625*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4626*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4627*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>175</integer> 4628*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 4629*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4630*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4631*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4632*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4633*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4634*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4635*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>175</integer> 4636*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 4637*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4638*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4639*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4640*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>175</integer> 4641*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>17</integer> 4642*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4643*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4644*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4645*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4646*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4647*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4648*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4649*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4650*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4651*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4652*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>175</integer> 4653*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 4654*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4655*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4656*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4657*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4658*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4659*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4660*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>175</integer> 4661*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 4662*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4663*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4664*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4665*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>175</integer> 4666*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>21</integer> 4667*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4668*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4669*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4670*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4671*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4672*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4673*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4674*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4675*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4676*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4677*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4678*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4679*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4680*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4681*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>179</integer> 4682*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4683*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4684*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4685*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4686*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4687*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4688*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4689*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>179</integer> 4690*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4691*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4692*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4693*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4694*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>179</integer> 4695*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>13</integer> 4696*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4697*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4698*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4699*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4700*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 4701*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4702*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 4703*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4704*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 4705*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4706*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4707*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4708*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4709*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4710*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4711*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4712*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4713*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4714*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>179</integer> 4715*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4716*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4717*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4718*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4719*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>179</integer> 4720*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 4721*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4722*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4723*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4724*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4725*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4726*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4727*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>180</integer> 4728*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4729*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4730*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4731*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4732*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>180</integer> 4733*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4734*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4735*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4736*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4737*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4738*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4739*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4740*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4741*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4742*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4743*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4744*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>180</integer> 4745*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4746*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4747*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4748*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 4749*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4750*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential memory leak</string> 4751*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4752*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential memory leak</string> 4753*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4754*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4755*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential memory leak</string> 4756*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 4757*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 4758*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 4759*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testOnlyRefferToVisibleVariables</string> 4760*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 4761*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4762*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4763*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>180</integer> 4764*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4765*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4766*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4767*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4768*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4769*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 4770*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4771*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4772*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4773*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4774*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4775*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>191</integer> 4776*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4777*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4778*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4779*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4780*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4781*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4782*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4783*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>191</integer> 4784*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4785*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4786*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4787*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4788*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>191</integer> 4789*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 4790*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4791*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4792*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4793*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4794*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 4795*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4796*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_malloc_into_struct'</string> 4797*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4798*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Calling 'my_malloc_into_struct'</string> 4799*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4800*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4801*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4802*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4803*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4804*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>185</integer> 4805*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4806*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4807*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4808*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4809*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4810*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'testMyMalloc'</string> 4811*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4812*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Entered call from 'testMyMalloc'</string> 4813*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4814*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4815*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4816*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4817*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4818*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4819*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4820*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4821*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4822*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>185</integer> 4823*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4824*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4825*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4826*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4827*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>185</integer> 4828*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4829*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4830*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4831*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4832*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4833*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4834*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4835*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>186</integer> 4836*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4837*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4838*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4839*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4840*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>186</integer> 4841*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 4842*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4843*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4844*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4845*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4846*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4847*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4848*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4849*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4850*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4851*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4852*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4853*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4854*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4855*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4856*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>186</integer> 4857*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4858*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4859*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4860*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4861*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>186</integer> 4862*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 4863*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4864*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4865*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4866*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4867*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4868*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4869*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>187</integer> 4870*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4871*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4872*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4873*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4874*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>187</integer> 4875*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4876*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4877*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4878*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4879*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4880*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4881*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4882*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4883*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4884*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4885*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4886*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4887*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4888*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4889*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4890*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>187</integer> 4891*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4892*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4893*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4894*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4895*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>187</integer> 4896*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4897*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4898*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4899*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4900*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4901*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4902*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4903*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>187</integer> 4904*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 4905*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4906*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4907*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4908*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>187</integer> 4909*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>14</integer> 4910*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4911*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4912*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4913*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4914*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4915*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4916*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4917*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4918*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4919*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4920*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>187</integer> 4921*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 4922*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4923*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4924*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4925*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4926*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4927*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4928*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>187</integer> 4929*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>9</integer> 4930*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4931*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4932*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4933*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>187</integer> 4934*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>18</integer> 4935*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4936*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4937*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4938*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4939*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>1</integer> 4940*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4941*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4942*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4943*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Memory is allocated</string> 4944*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4945*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4946*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 4947*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 4948*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4949*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>191</integer> 4950*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4951*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4952*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4953*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 4954*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4955*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4956*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4957*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>191</integer> 4958*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4959*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4960*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4961*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4962*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>191</integer> 4963*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>25</integer> 4964*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4965*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4966*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4967*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4968*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 4969*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 4970*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 4971*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 4972*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Returned allocated memory</string> 4973*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4974*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4975*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 4976*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 4977*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4978*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4979*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 4980*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4981*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4982*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>191</integer> 4983*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 4984*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4985*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4986*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4987*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>191</integer> 4988*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>23</integer> 4989*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4990*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4991*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 4992*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 4993*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 4994*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 4995*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>192</integer> 4996*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 4997*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 4998*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 4999*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 5000*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>192</integer> 5001*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 5002*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 5003*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 5004*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 5005*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 5006*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 5007*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 5008*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 5009*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 5010*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 5011*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 5012*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>192</integer> 5013*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 5014*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 5015*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 5016*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 5017*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 5018*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential memory leak</string> 5019*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 5020*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Potential memory leak</string> 5021*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 5022*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 5023*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Potential memory leak</string> 5024*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Memory Error</string> 5025*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Memory leak</string> 5026*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 5027*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testMyMalloc</string> 5028*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 5029*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 5030*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 5031*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>192</integer> 5032*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>1</integer> 5033*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 5034*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 5035*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 5036*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 5037