composite.nativecodeanalysis.sarif 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469
  1. {
  2. "version": "2.1.0",
  3. "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
  4. "runs": [
  5. {
  6. "results": [
  7. {
  8. "ruleId": "C6255",
  9. "message": {
  10. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  11. },
  12. "locations": [
  13. {
  14. "physicalLocation": {
  15. "artifactLocation": {
  16. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  17. },
  18. "region": {
  19. "startLine": 302,
  20. "startColumn": 52,
  21. "endLine": 302,
  22. "endColumn": 52
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "cc_b",
  28. "kind": "function"
  29. }
  30. ]
  31. }
  32. ]
  33. },
  34. {
  35. "ruleId": "C6385",
  36. "message": {
  37. "text": "Lesen ungültiger Daten von \"pdf_MicroVariants\": die lesbare Größe beträgt \"272\" Byte, es können jedoch \"-2\" Byte gelesen werden."
  38. },
  39. "locations": [
  40. {
  41. "physicalLocation": {
  42. "artifactLocation": {
  43. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  44. },
  45. "region": {
  46. "startLine": 401,
  47. "startColumn": 5,
  48. "endLine": 401,
  49. "endColumn": 33
  50. }
  51. },
  52. "logicalLocations": [
  53. {
  54. "decoratedName": "cc_b",
  55. "kind": "function"
  56. }
  57. ]
  58. }
  59. ],
  60. "codeFlows": [
  61. {
  62. "threadFlows": [
  63. {
  64. "locations": [
  65. {
  66. "location": {
  67. "physicalLocation": {
  68. "artifactLocation": {
  69. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  70. },
  71. "region": {
  72. "startLine": 300,
  73. "startColumn": 15
  74. }
  75. }
  76. },
  77. "importance": "unimportant"
  78. },
  79. {
  80. "location": {
  81. "physicalLocation": {
  82. "artifactLocation": {
  83. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  84. },
  85. "region": {
  86. "startLine": 301,
  87. "startColumn": 9
  88. }
  89. }
  90. },
  91. "importance": "unimportant"
  92. },
  93. {
  94. "location": {
  95. "physicalLocation": {
  96. "artifactLocation": {
  97. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  98. },
  99. "region": {
  100. "startLine": 302,
  101. "startColumn": 20
  102. }
  103. }
  104. },
  105. "importance": "unimportant"
  106. },
  107. {
  108. "location": {
  109. "physicalLocation": {
  110. "artifactLocation": {
  111. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  112. },
  113. "region": {
  114. "startLine": 303,
  115. "startColumn": 11
  116. }
  117. }
  118. },
  119. "importance": "unimportant"
  120. },
  121. {
  122. "location": {
  123. "physicalLocation": {
  124. "artifactLocation": {
  125. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  126. },
  127. "region": {
  128. "startLine": 304,
  129. "startColumn": 9
  130. }
  131. }
  132. },
  133. "importance": "unimportant"
  134. },
  135. {
  136. "location": {
  137. "physicalLocation": {
  138. "artifactLocation": {
  139. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  140. },
  141. "region": {
  142. "startLine": 305,
  143. "startColumn": 9
  144. }
  145. }
  146. },
  147. "importance": "unimportant"
  148. },
  149. {
  150. "location": {
  151. "physicalLocation": {
  152. "artifactLocation": {
  153. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  154. },
  155. "region": {
  156. "startLine": 305,
  157. "startColumn": 12
  158. }
  159. }
  160. },
  161. "importance": "unimportant"
  162. },
  163. {
  164. "location": {
  165. "physicalLocation": {
  166. "artifactLocation": {
  167. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  168. },
  169. "region": {
  170. "startLine": 305,
  171. "startColumn": 15
  172. }
  173. }
  174. },
  175. "importance": "unimportant"
  176. },
  177. {
  178. "location": {
  179. "physicalLocation": {
  180. "artifactLocation": {
  181. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  182. },
  183. "region": {
  184. "startLine": 305,
  185. "startColumn": 18
  186. }
  187. }
  188. },
  189. "importance": "unimportant"
  190. },
  191. {
  192. "location": {
  193. "physicalLocation": {
  194. "artifactLocation": {
  195. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  196. },
  197. "region": {
  198. "startLine": 305,
  199. "startColumn": 28
  200. }
  201. }
  202. },
  203. "importance": "unimportant"
  204. },
  205. {
  206. "location": {
  207. "physicalLocation": {
  208. "artifactLocation": {
  209. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  210. },
  211. "region": {
  212. "startLine": 305,
  213. "startColumn": 52
  214. }
  215. }
  216. },
  217. "importance": "unimportant"
  218. },
  219. {
  220. "location": {
  221. "physicalLocation": {
  222. "artifactLocation": {
  223. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  224. },
  225. "region": {
  226. "startLine": 306,
  227. "startColumn": 9
  228. }
  229. }
  230. },
  231. "importance": "unimportant"
  232. },
  233. {
  234. "location": {
  235. "physicalLocation": {
  236. "artifactLocation": {
  237. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  238. },
  239. "region": {
  240. "startLine": 307,
  241. "startColumn": 10
  242. }
  243. }
  244. },
  245. "importance": "unimportant"
  246. },
  247. {
  248. "location": {
  249. "physicalLocation": {
  250. "artifactLocation": {
  251. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  252. },
  253. "region": {
  254. "startLine": 308,
  255. "startColumn": 9
  256. }
  257. }
  258. },
  259. "importance": "unimportant"
  260. },
  261. {
  262. "location": {
  263. "physicalLocation": {
  264. "artifactLocation": {
  265. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  266. },
  267. "region": {
  268. "startLine": 308,
  269. "startColumn": 18
  270. }
  271. }
  272. },
  273. "importance": "unimportant"
  274. },
  275. {
  276. "location": {
  277. "physicalLocation": {
  278. "artifactLocation": {
  279. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  280. },
  281. "region": {
  282. "startLine": 308,
  283. "startColumn": 32
  284. }
  285. }
  286. },
  287. "importance": "unimportant"
  288. },
  289. {
  290. "location": {
  291. "physicalLocation": {
  292. "artifactLocation": {
  293. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  294. },
  295. "region": {
  296. "startLine": 308,
  297. "startColumn": 48
  298. }
  299. }
  300. },
  301. "importance": "unimportant"
  302. },
  303. {
  304. "location": {
  305. "physicalLocation": {
  306. "artifactLocation": {
  307. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  308. },
  309. "region": {
  310. "startLine": 308,
  311. "startColumn": 63
  312. }
  313. }
  314. },
  315. "importance": "unimportant"
  316. },
  317. {
  318. "location": {
  319. "physicalLocation": {
  320. "artifactLocation": {
  321. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  322. },
  323. "region": {
  324. "startLine": 309,
  325. "startColumn": 9
  326. }
  327. }
  328. },
  329. "importance": "unimportant"
  330. },
  331. {
  332. "location": {
  333. "physicalLocation": {
  334. "artifactLocation": {
  335. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  336. },
  337. "region": {
  338. "startLine": 309,
  339. "startColumn": 18
  340. }
  341. }
  342. },
  343. "importance": "unimportant"
  344. },
  345. {
  346. "location": {
  347. "physicalLocation": {
  348. "artifactLocation": {
  349. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  350. },
  351. "region": {
  352. "startLine": 309,
  353. "startColumn": 29
  354. }
  355. }
  356. },
  357. "importance": "unimportant"
  358. },
  359. {
  360. "location": {
  361. "physicalLocation": {
  362. "artifactLocation": {
  363. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  364. },
  365. "region": {
  366. "startLine": 309,
  367. "startColumn": 39
  368. }
  369. }
  370. },
  371. "importance": "unimportant"
  372. },
  373. {
  374. "location": {
  375. "physicalLocation": {
  376. "artifactLocation": {
  377. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  378. },
  379. "region": {
  380. "startLine": 309,
  381. "startColumn": 48
  382. }
  383. }
  384. },
  385. "importance": "unimportant"
  386. },
  387. {
  388. "location": {
  389. "physicalLocation": {
  390. "artifactLocation": {
  391. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  392. },
  393. "region": {
  394. "startLine": 310,
  395. "startColumn": 9
  396. }
  397. }
  398. },
  399. "importance": "unimportant"
  400. },
  401. {
  402. "location": {
  403. "physicalLocation": {
  404. "artifactLocation": {
  405. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  406. },
  407. "region": {
  408. "startLine": 311,
  409. "startColumn": 9
  410. }
  411. }
  412. },
  413. "importance": "unimportant"
  414. },
  415. {
  416. "location": {
  417. "physicalLocation": {
  418. "artifactLocation": {
  419. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  420. },
  421. "region": {
  422. "startLine": 312,
  423. "startColumn": 15
  424. }
  425. }
  426. },
  427. "importance": "unimportant"
  428. },
  429. {
  430. "location": {
  431. "physicalLocation": {
  432. "artifactLocation": {
  433. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  434. },
  435. "region": {
  436. "startLine": 314,
  437. "startColumn": 12
  438. }
  439. }
  440. },
  441. "importance": "unimportant"
  442. },
  443. {
  444. "location": {
  445. "physicalLocation": {
  446. "artifactLocation": {
  447. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  448. },
  449. "region": {
  450. "startLine": 314,
  451. "startColumn": 19
  452. }
  453. },
  454. "message": {
  455. "text": "Diese Schleife überspringen (Annahme: \"i<length\" ist false)"
  456. }
  457. },
  458. "kinds": [
  459. "branch"
  460. ],
  461. "importance": "important"
  462. },
  463. {
  464. "location": {
  465. "physicalLocation": {
  466. "artifactLocation": {
  467. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  468. },
  469. "region": {
  470. "startLine": 326,
  471. "startColumn": 26
  472. }
  473. }
  474. },
  475. "importance": "unimportant"
  476. },
  477. {
  478. "location": {
  479. "physicalLocation": {
  480. "artifactLocation": {
  481. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  482. },
  483. "region": {
  484. "startLine": 328,
  485. "startColumn": 20
  486. }
  487. }
  488. },
  489. "importance": "unimportant"
  490. },
  491. {
  492. "location": {
  493. "physicalLocation": {
  494. "artifactLocation": {
  495. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  496. },
  497. "region": {
  498. "startLine": 332,
  499. "startColumn": 13
  500. }
  501. }
  502. },
  503. "importance": "unimportant"
  504. },
  505. {
  506. "location": {
  507. "physicalLocation": {
  508. "artifactLocation": {
  509. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  510. },
  511. "region": {
  512. "startLine": 334,
  513. "startColumn": 18
  514. }
  515. },
  516. "message": {
  517. "text": "Diese Verzweigung überspringen (Annahme: \"cc_width==2\" ist false)"
  518. }
  519. },
  520. "kinds": [
  521. "branch"
  522. ],
  523. "importance": "important"
  524. },
  525. {
  526. "location": {
  527. "physicalLocation": {
  528. "artifactLocation": {
  529. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  530. },
  531. "region": {
  532. "startLine": 350,
  533. "startColumn": 25
  534. }
  535. },
  536. "message": {
  537. "text": "Diese Verzweigung überspringen (Annahme: \"cc_width==3\" ist false)"
  538. }
  539. },
  540. "kinds": [
  541. "branch"
  542. ],
  543. "importance": "important"
  544. },
  545. {
  546. "location": {
  547. "physicalLocation": {
  548. "artifactLocation": {
  549. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  550. },
  551. "region": {
  552. "startLine": 372,
  553. "startColumn": 25
  554. }
  555. },
  556. "message": {
  557. "text": "Diese Verzweigung überspringen (Annahme: \"cc_width==4\" ist false)"
  558. }
  559. },
  560. "kinds": [
  561. "branch"
  562. ],
  563. "importance": "important"
  564. },
  565. {
  566. "location": {
  567. "physicalLocation": {
  568. "artifactLocation": {
  569. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  570. },
  571. "region": {
  572. "startLine": 399,
  573. "startColumn": 12
  574. }
  575. },
  576. "message": {
  577. "text": "\"variant\" kann gleich -1 sein."
  578. }
  579. },
  580. "kinds": [
  581. "declaration"
  582. ],
  583. "importance": "essential"
  584. },
  585. {
  586. "location": {
  587. "physicalLocation": {
  588. "artifactLocation": {
  589. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  590. },
  591. "region": {
  592. "startLine": 401,
  593. "startColumn": 13
  594. }
  595. },
  596. "message": {
  597. "text": "Ungültiger Lesevorgang von \"pdf_MicroVariants[-1]\" (der lesbare Bereich ist 0 bis 135)"
  598. }
  599. },
  600. "kinds": [
  601. "usage"
  602. ],
  603. "importance": "essential"
  604. }
  605. ]
  606. }
  607. ]
  608. }
  609. ]
  610. },
  611. {
  612. "ruleId": "C6385",
  613. "message": {
  614. "text": "Lesen ungültiger Daten von \"pdf_RAPTable\": die lesbare Größe beträgt \"136\" Byte, es können jedoch \"-1\" Byte gelesen werden."
  615. },
  616. "locations": [
  617. {
  618. "physicalLocation": {
  619. "artifactLocation": {
  620. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  621. },
  622. "region": {
  623. "startLine": 438,
  624. "startColumn": 5,
  625. "endLine": 438,
  626. "endColumn": 33
  627. }
  628. },
  629. "logicalLocations": [
  630. {
  631. "decoratedName": "cc_b",
  632. "kind": "function"
  633. }
  634. ]
  635. }
  636. ],
  637. "codeFlows": [
  638. {
  639. "threadFlows": [
  640. {
  641. "locations": [
  642. {
  643. "location": {
  644. "physicalLocation": {
  645. "artifactLocation": {
  646. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  647. },
  648. "region": {
  649. "startLine": 300,
  650. "startColumn": 15
  651. }
  652. }
  653. },
  654. "importance": "unimportant"
  655. },
  656. {
  657. "location": {
  658. "physicalLocation": {
  659. "artifactLocation": {
  660. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  661. },
  662. "region": {
  663. "startLine": 301,
  664. "startColumn": 9
  665. }
  666. }
  667. },
  668. "importance": "unimportant"
  669. },
  670. {
  671. "location": {
  672. "physicalLocation": {
  673. "artifactLocation": {
  674. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  675. },
  676. "region": {
  677. "startLine": 302,
  678. "startColumn": 20
  679. }
  680. }
  681. },
  682. "importance": "unimportant"
  683. },
  684. {
  685. "location": {
  686. "physicalLocation": {
  687. "artifactLocation": {
  688. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  689. },
  690. "region": {
  691. "startLine": 303,
  692. "startColumn": 11
  693. }
  694. }
  695. },
  696. "importance": "unimportant"
  697. },
  698. {
  699. "location": {
  700. "physicalLocation": {
  701. "artifactLocation": {
  702. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  703. },
  704. "region": {
  705. "startLine": 304,
  706. "startColumn": 9
  707. }
  708. }
  709. },
  710. "importance": "unimportant"
  711. },
  712. {
  713. "location": {
  714. "physicalLocation": {
  715. "artifactLocation": {
  716. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  717. },
  718. "region": {
  719. "startLine": 305,
  720. "startColumn": 9
  721. }
  722. }
  723. },
  724. "importance": "unimportant"
  725. },
  726. {
  727. "location": {
  728. "physicalLocation": {
  729. "artifactLocation": {
  730. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  731. },
  732. "region": {
  733. "startLine": 305,
  734. "startColumn": 12
  735. }
  736. }
  737. },
  738. "importance": "unimportant"
  739. },
  740. {
  741. "location": {
  742. "physicalLocation": {
  743. "artifactLocation": {
  744. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  745. },
  746. "region": {
  747. "startLine": 305,
  748. "startColumn": 15
  749. }
  750. }
  751. },
  752. "importance": "unimportant"
  753. },
  754. {
  755. "location": {
  756. "physicalLocation": {
  757. "artifactLocation": {
  758. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  759. },
  760. "region": {
  761. "startLine": 305,
  762. "startColumn": 18
  763. }
  764. }
  765. },
  766. "importance": "unimportant"
  767. },
  768. {
  769. "location": {
  770. "physicalLocation": {
  771. "artifactLocation": {
  772. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  773. },
  774. "region": {
  775. "startLine": 305,
  776. "startColumn": 28
  777. }
  778. }
  779. },
  780. "importance": "unimportant"
  781. },
  782. {
  783. "location": {
  784. "physicalLocation": {
  785. "artifactLocation": {
  786. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  787. },
  788. "region": {
  789. "startLine": 305,
  790. "startColumn": 52
  791. }
  792. }
  793. },
  794. "importance": "unimportant"
  795. },
  796. {
  797. "location": {
  798. "physicalLocation": {
  799. "artifactLocation": {
  800. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  801. },
  802. "region": {
  803. "startLine": 306,
  804. "startColumn": 9
  805. }
  806. }
  807. },
  808. "importance": "unimportant"
  809. },
  810. {
  811. "location": {
  812. "physicalLocation": {
  813. "artifactLocation": {
  814. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  815. },
  816. "region": {
  817. "startLine": 307,
  818. "startColumn": 10
  819. }
  820. }
  821. },
  822. "importance": "unimportant"
  823. },
  824. {
  825. "location": {
  826. "physicalLocation": {
  827. "artifactLocation": {
  828. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  829. },
  830. "region": {
  831. "startLine": 308,
  832. "startColumn": 9
  833. }
  834. }
  835. },
  836. "importance": "unimportant"
  837. },
  838. {
  839. "location": {
  840. "physicalLocation": {
  841. "artifactLocation": {
  842. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  843. },
  844. "region": {
  845. "startLine": 308,
  846. "startColumn": 18
  847. }
  848. }
  849. },
  850. "importance": "unimportant"
  851. },
  852. {
  853. "location": {
  854. "physicalLocation": {
  855. "artifactLocation": {
  856. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  857. },
  858. "region": {
  859. "startLine": 308,
  860. "startColumn": 32
  861. }
  862. }
  863. },
  864. "importance": "unimportant"
  865. },
  866. {
  867. "location": {
  868. "physicalLocation": {
  869. "artifactLocation": {
  870. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  871. },
  872. "region": {
  873. "startLine": 308,
  874. "startColumn": 48
  875. }
  876. }
  877. },
  878. "importance": "unimportant"
  879. },
  880. {
  881. "location": {
  882. "physicalLocation": {
  883. "artifactLocation": {
  884. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  885. },
  886. "region": {
  887. "startLine": 308,
  888. "startColumn": 63
  889. }
  890. }
  891. },
  892. "importance": "unimportant"
  893. },
  894. {
  895. "location": {
  896. "physicalLocation": {
  897. "artifactLocation": {
  898. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  899. },
  900. "region": {
  901. "startLine": 309,
  902. "startColumn": 9
  903. }
  904. }
  905. },
  906. "importance": "unimportant"
  907. },
  908. {
  909. "location": {
  910. "physicalLocation": {
  911. "artifactLocation": {
  912. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  913. },
  914. "region": {
  915. "startLine": 309,
  916. "startColumn": 18
  917. }
  918. }
  919. },
  920. "importance": "unimportant"
  921. },
  922. {
  923. "location": {
  924. "physicalLocation": {
  925. "artifactLocation": {
  926. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  927. },
  928. "region": {
  929. "startLine": 309,
  930. "startColumn": 29
  931. }
  932. }
  933. },
  934. "importance": "unimportant"
  935. },
  936. {
  937. "location": {
  938. "physicalLocation": {
  939. "artifactLocation": {
  940. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  941. },
  942. "region": {
  943. "startLine": 309,
  944. "startColumn": 39
  945. }
  946. }
  947. },
  948. "importance": "unimportant"
  949. },
  950. {
  951. "location": {
  952. "physicalLocation": {
  953. "artifactLocation": {
  954. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  955. },
  956. "region": {
  957. "startLine": 309,
  958. "startColumn": 48
  959. }
  960. }
  961. },
  962. "importance": "unimportant"
  963. },
  964. {
  965. "location": {
  966. "physicalLocation": {
  967. "artifactLocation": {
  968. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  969. },
  970. "region": {
  971. "startLine": 310,
  972. "startColumn": 9
  973. }
  974. }
  975. },
  976. "importance": "unimportant"
  977. },
  978. {
  979. "location": {
  980. "physicalLocation": {
  981. "artifactLocation": {
  982. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  983. },
  984. "region": {
  985. "startLine": 311,
  986. "startColumn": 9
  987. }
  988. }
  989. },
  990. "importance": "unimportant"
  991. },
  992. {
  993. "location": {
  994. "physicalLocation": {
  995. "artifactLocation": {
  996. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  997. },
  998. "region": {
  999. "startLine": 312,
  1000. "startColumn": 15
  1001. }
  1002. }
  1003. },
  1004. "importance": "unimportant"
  1005. },
  1006. {
  1007. "location": {
  1008. "physicalLocation": {
  1009. "artifactLocation": {
  1010. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1011. },
  1012. "region": {
  1013. "startLine": 314,
  1014. "startColumn": 12
  1015. }
  1016. }
  1017. },
  1018. "importance": "unimportant"
  1019. },
  1020. {
  1021. "location": {
  1022. "physicalLocation": {
  1023. "artifactLocation": {
  1024. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1025. },
  1026. "region": {
  1027. "startLine": 314,
  1028. "startColumn": 19
  1029. }
  1030. },
  1031. "message": {
  1032. "text": "Diese Schleife überspringen (Annahme: \"i<length\" ist false)"
  1033. }
  1034. },
  1035. "kinds": [
  1036. "branch"
  1037. ],
  1038. "importance": "important"
  1039. },
  1040. {
  1041. "location": {
  1042. "physicalLocation": {
  1043. "artifactLocation": {
  1044. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1045. },
  1046. "region": {
  1047. "startLine": 326,
  1048. "startColumn": 26
  1049. }
  1050. }
  1051. },
  1052. "importance": "unimportant"
  1053. },
  1054. {
  1055. "location": {
  1056. "physicalLocation": {
  1057. "artifactLocation": {
  1058. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1059. },
  1060. "region": {
  1061. "startLine": 328,
  1062. "startColumn": 20
  1063. }
  1064. }
  1065. },
  1066. "importance": "unimportant"
  1067. },
  1068. {
  1069. "location": {
  1070. "physicalLocation": {
  1071. "artifactLocation": {
  1072. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1073. },
  1074. "region": {
  1075. "startLine": 332,
  1076. "startColumn": 13
  1077. }
  1078. }
  1079. },
  1080. "importance": "unimportant"
  1081. },
  1082. {
  1083. "location": {
  1084. "physicalLocation": {
  1085. "artifactLocation": {
  1086. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1087. },
  1088. "region": {
  1089. "startLine": 334,
  1090. "startColumn": 18
  1091. }
  1092. },
  1093. "message": {
  1094. "text": "Diese Verzweigung überspringen (Annahme: \"cc_width==2\" ist false)"
  1095. }
  1096. },
  1097. "kinds": [
  1098. "branch"
  1099. ],
  1100. "importance": "important"
  1101. },
  1102. {
  1103. "location": {
  1104. "physicalLocation": {
  1105. "artifactLocation": {
  1106. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1107. },
  1108. "region": {
  1109. "startLine": 350,
  1110. "startColumn": 25
  1111. }
  1112. },
  1113. "message": {
  1114. "text": "Diese Verzweigung überspringen (Annahme: \"cc_width==3\" ist false)"
  1115. }
  1116. },
  1117. "kinds": [
  1118. "branch"
  1119. ],
  1120. "importance": "important"
  1121. },
  1122. {
  1123. "location": {
  1124. "physicalLocation": {
  1125. "artifactLocation": {
  1126. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1127. },
  1128. "region": {
  1129. "startLine": 372,
  1130. "startColumn": 25
  1131. }
  1132. },
  1133. "message": {
  1134. "text": "Diese Verzweigung überspringen (Annahme: \"cc_width==4\" ist false)"
  1135. }
  1136. },
  1137. "kinds": [
  1138. "branch"
  1139. ],
  1140. "importance": "important"
  1141. },
  1142. {
  1143. "location": {
  1144. "physicalLocation": {
  1145. "artifactLocation": {
  1146. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1147. },
  1148. "region": {
  1149. "startLine": 399,
  1150. "startColumn": 12
  1151. }
  1152. },
  1153. "message": {
  1154. "text": "\"variant\" kann gleich -1 sein."
  1155. }
  1156. },
  1157. "kinds": [
  1158. "declaration"
  1159. ],
  1160. "importance": "essential"
  1161. },
  1162. {
  1163. "location": {
  1164. "physicalLocation": {
  1165. "artifactLocation": {
  1166. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1167. },
  1168. "region": {
  1169. "startLine": 401,
  1170. "startColumn": 13
  1171. }
  1172. }
  1173. },
  1174. "importance": "unimportant"
  1175. },
  1176. {
  1177. "location": {
  1178. "physicalLocation": {
  1179. "artifactLocation": {
  1180. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1181. },
  1182. "region": {
  1183. "startLine": 402,
  1184. "startColumn": 18
  1185. }
  1186. }
  1187. },
  1188. "importance": "unimportant"
  1189. },
  1190. {
  1191. "location": {
  1192. "physicalLocation": {
  1193. "artifactLocation": {
  1194. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1195. },
  1196. "region": {
  1197. "startLine": 403,
  1198. "startColumn": 7
  1199. }
  1200. }
  1201. },
  1202. "importance": "unimportant"
  1203. },
  1204. {
  1205. "location": {
  1206. "physicalLocation": {
  1207. "artifactLocation": {
  1208. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1209. },
  1210. "region": {
  1211. "startLine": 404,
  1212. "startColumn": 14
  1213. }
  1214. }
  1215. },
  1216. "importance": "unimportant"
  1217. },
  1218. {
  1219. "location": {
  1220. "physicalLocation": {
  1221. "artifactLocation": {
  1222. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1223. },
  1224. "region": {
  1225. "startLine": 405,
  1226. "startColumn": 7
  1227. }
  1228. }
  1229. },
  1230. "importance": "unimportant"
  1231. },
  1232. {
  1233. "location": {
  1234. "physicalLocation": {
  1235. "artifactLocation": {
  1236. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1237. },
  1238. "region": {
  1239. "startLine": 406,
  1240. "startColumn": 12
  1241. }
  1242. }
  1243. },
  1244. "importance": "unimportant"
  1245. },
  1246. {
  1247. "location": {
  1248. "physicalLocation": {
  1249. "artifactLocation": {
  1250. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1251. },
  1252. "region": {
  1253. "startLine": 409,
  1254. "startColumn": 14
  1255. }
  1256. },
  1257. "message": {
  1258. "text": "Diese Schleife überspringen (Annahme: \"i>0\" ist false)"
  1259. }
  1260. },
  1261. "kinds": [
  1262. "branch"
  1263. ],
  1264. "importance": "important"
  1265. },
  1266. {
  1267. "location": {
  1268. "physicalLocation": {
  1269. "artifactLocation": {
  1270. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1271. },
  1272. "region": {
  1273. "startLine": 415,
  1274. "startColumn": 14
  1275. }
  1276. }
  1277. },
  1278. "importance": "unimportant"
  1279. },
  1280. {
  1281. "location": {
  1282. "physicalLocation": {
  1283. "artifactLocation": {
  1284. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1285. },
  1286. "region": {
  1287. "startLine": 416,
  1288. "startColumn": 12
  1289. }
  1290. }
  1291. },
  1292. "importance": "unimportant"
  1293. },
  1294. {
  1295. "location": {
  1296. "physicalLocation": {
  1297. "artifactLocation": {
  1298. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1299. },
  1300. "region": {
  1301. "startLine": 416,
  1302. "startColumn": 19
  1303. }
  1304. },
  1305. "message": {
  1306. "text": "Diese Schleife überspringen (Annahme: \"i<longueur\" ist false)"
  1307. }
  1308. },
  1309. "kinds": [
  1310. "branch"
  1311. ],
  1312. "importance": "important"
  1313. },
  1314. {
  1315. "location": {
  1316. "physicalLocation": {
  1317. "artifactLocation": {
  1318. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1319. },
  1320. "region": {
  1321. "startLine": 427,
  1322. "startColumn": 12
  1323. }
  1324. }
  1325. },
  1326. "importance": "unimportant"
  1327. },
  1328. {
  1329. "location": {
  1330. "physicalLocation": {
  1331. "artifactLocation": {
  1332. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1333. },
  1334. "region": {
  1335. "startLine": 427,
  1336. "startColumn": 19
  1337. }
  1338. },
  1339. "message": {
  1340. "text": "Diese Schleife überspringen (Annahme: \"j<k\" ist false)"
  1341. }
  1342. },
  1343. "kinds": [
  1344. "branch"
  1345. ],
  1346. "importance": "important"
  1347. },
  1348. {
  1349. "location": {
  1350. "physicalLocation": {
  1351. "artifactLocation": {
  1352. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1353. },
  1354. "region": {
  1355. "startLine": 433,
  1356. "startColumn": 12
  1357. }
  1358. }
  1359. },
  1360. "importance": "unimportant"
  1361. },
  1362. {
  1363. "location": {
  1364. "physicalLocation": {
  1365. "artifactLocation": {
  1366. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1367. },
  1368. "region": {
  1369. "startLine": 433,
  1370. "startColumn": 23
  1371. }
  1372. },
  1373. "message": {
  1374. "text": "Diese Schleife überspringen (Annahme: \"i>=0\" ist false)"
  1375. }
  1376. },
  1377. "kinds": [
  1378. "branch"
  1379. ],
  1380. "importance": "important"
  1381. },
  1382. {
  1383. "location": {
  1384. "physicalLocation": {
  1385. "artifactLocation": {
  1386. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1387. },
  1388. "region": {
  1389. "startLine": 438,
  1390. "startColumn": 18
  1391. }
  1392. },
  1393. "message": {
  1394. "text": "Ungültiger Lesevorgang von \"pdf_RAPTable[-1]\" (der lesbare Bereich ist 0 bis 135)"
  1395. }
  1396. },
  1397. "kinds": [
  1398. "usage"
  1399. ],
  1400. "importance": "essential"
  1401. }
  1402. ]
  1403. }
  1404. ]
  1405. }
  1406. ]
  1407. },
  1408. {
  1409. "ruleId": "C6255",
  1410. "message": {
  1411. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  1412. },
  1413. "locations": [
  1414. {
  1415. "physicalLocation": {
  1416. "artifactLocation": {
  1417. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1418. },
  1419. "region": {
  1420. "startLine": 519,
  1421. "startColumn": 52,
  1422. "endLine": 519,
  1423. "endColumn": 52
  1424. }
  1425. },
  1426. "logicalLocations": [
  1427. {
  1428. "decoratedName": "cc_c",
  1429. "kind": "function"
  1430. }
  1431. ]
  1432. }
  1433. ]
  1434. },
  1435. {
  1436. "ruleId": "C6255",
  1437. "message": {
  1438. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  1439. },
  1440. "locations": [
  1441. {
  1442. "physicalLocation": {
  1443. "artifactLocation": {
  1444. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1445. },
  1446. "region": {
  1447. "startLine": 857,
  1448. "startColumn": 36,
  1449. "endLine": 857,
  1450. "endColumn": 36
  1451. }
  1452. },
  1453. "logicalLocations": [
  1454. {
  1455. "decoratedName": "cc_binary_string",
  1456. "kind": "function"
  1457. }
  1458. ]
  1459. }
  1460. ]
  1461. },
  1462. {
  1463. "ruleId": "C6255",
  1464. "message": {
  1465. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  1466. },
  1467. "locations": [
  1468. {
  1469. "physicalLocation": {
  1470. "artifactLocation": {
  1471. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1472. },
  1473. "region": {
  1474. "startLine": 933,
  1475. "startColumn": 51,
  1476. "endLine": 933,
  1477. "endColumn": 51
  1478. }
  1479. },
  1480. "logicalLocations": [
  1481. {
  1482. "decoratedName": "cc_binary_string",
  1483. "kind": "function"
  1484. }
  1485. ]
  1486. }
  1487. ]
  1488. },
  1489. {
  1490. "ruleId": "C6386",
  1491. "message": {
  1492. "text": "Pufferüberlauf beim Schreiben nach \"general_field\": die schreibbare Größe beträgt \"length+1\" Byte, es können jedoch \"2\" Byte geschrieben werden."
  1493. },
  1494. "locations": [
  1495. {
  1496. "physicalLocation": {
  1497. "artifactLocation": {
  1498. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1499. },
  1500. "region": {
  1501. "startLine": 1118,
  1502. "startColumn": 5,
  1503. "endLine": 1118,
  1504. "endColumn": 24
  1505. }
  1506. },
  1507. "logicalLocations": [
  1508. {
  1509. "decoratedName": "cc_binary_string",
  1510. "kind": "function"
  1511. }
  1512. ]
  1513. }
  1514. ],
  1515. "codeFlows": [
  1516. {
  1517. "threadFlows": [
  1518. {
  1519. "locations": [
  1520. {
  1521. "location": {
  1522. "physicalLocation": {
  1523. "artifactLocation": {
  1524. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1525. },
  1526. "region": {
  1527. "startLine": 852,
  1528. "startColumn": 9
  1529. }
  1530. }
  1531. },
  1532. "importance": "unimportant"
  1533. },
  1534. {
  1535. "location": {
  1536. "physicalLocation": {
  1537. "artifactLocation": {
  1538. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1539. },
  1540. "region": {
  1541. "startLine": 852,
  1542. "startColumn": 26
  1543. }
  1544. }
  1545. },
  1546. "importance": "unimportant"
  1547. },
  1548. {
  1549. "location": {
  1550. "physicalLocation": {
  1551. "artifactLocation": {
  1552. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1553. },
  1554. "region": {
  1555. "startLine": 852,
  1556. "startColumn": 37
  1557. }
  1558. }
  1559. },
  1560. "importance": "unimportant"
  1561. },
  1562. {
  1563. "location": {
  1564. "physicalLocation": {
  1565. "artifactLocation": {
  1566. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1567. },
  1568. "region": {
  1569. "startLine": 853,
  1570. "startColumn": 9
  1571. }
  1572. }
  1573. },
  1574. "importance": "unimportant"
  1575. },
  1576. {
  1577. "location": {
  1578. "physicalLocation": {
  1579. "artifactLocation": {
  1580. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1581. },
  1582. "region": {
  1583. "startLine": 853,
  1584. "startColumn": 12
  1585. }
  1586. }
  1587. },
  1588. "importance": "unimportant"
  1589. },
  1590. {
  1591. "location": {
  1592. "physicalLocation": {
  1593. "artifactLocation": {
  1594. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1595. },
  1596. "region": {
  1597. "startLine": 853,
  1598. "startColumn": 15
  1599. }
  1600. }
  1601. },
  1602. "importance": "unimportant"
  1603. },
  1604. {
  1605. "location": {
  1606. "physicalLocation": {
  1607. "artifactLocation": {
  1608. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1609. },
  1610. "region": {
  1611. "startLine": 853,
  1612. "startColumn": 24
  1613. }
  1614. }
  1615. },
  1616. "importance": "unimportant"
  1617. },
  1618. {
  1619. "location": {
  1620. "physicalLocation": {
  1621. "artifactLocation": {
  1622. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1623. },
  1624. "region": {
  1625. "startLine": 853,
  1626. "startColumn": 38
  1627. }
  1628. }
  1629. },
  1630. "importance": "unimportant"
  1631. },
  1632. {
  1633. "location": {
  1634. "physicalLocation": {
  1635. "artifactLocation": {
  1636. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1637. },
  1638. "region": {
  1639. "startLine": 854,
  1640. "startColumn": 9
  1641. }
  1642. }
  1643. },
  1644. "importance": "unimportant"
  1645. },
  1646. {
  1647. "location": {
  1648. "physicalLocation": {
  1649. "artifactLocation": {
  1650. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1651. },
  1652. "region": {
  1653. "startLine": 854,
  1654. "startColumn": 20
  1655. }
  1656. }
  1657. },
  1658. "importance": "unimportant"
  1659. },
  1660. {
  1661. "location": {
  1662. "physicalLocation": {
  1663. "artifactLocation": {
  1664. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1665. },
  1666. "region": {
  1667. "startLine": 855,
  1668. "startColumn": 10
  1669. }
  1670. }
  1671. },
  1672. "importance": "unimportant"
  1673. },
  1674. {
  1675. "location": {
  1676. "physicalLocation": {
  1677. "artifactLocation": {
  1678. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1679. },
  1680. "region": {
  1681. "startLine": 856,
  1682. "startColumn": 9
  1683. }
  1684. }
  1685. },
  1686. "importance": "unimportant"
  1687. },
  1688. {
  1689. "location": {
  1690. "physicalLocation": {
  1691. "artifactLocation": {
  1692. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1693. },
  1694. "region": {
  1695. "startLine": 857,
  1696. "startColumn": 11
  1697. }
  1698. },
  1699. "message": {
  1700. "text": "\"general_field\" ist ein Array mit 0 Byte."
  1701. }
  1702. },
  1703. "kinds": [
  1704. "declaration"
  1705. ],
  1706. "importance": "essential"
  1707. },
  1708. {
  1709. "location": {
  1710. "physicalLocation": {
  1711. "artifactLocation": {
  1712. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1713. },
  1714. "region": {
  1715. "startLine": 858,
  1716. "startColumn": 9
  1717. }
  1718. }
  1719. },
  1720. "importance": "unimportant"
  1721. },
  1722. {
  1723. "location": {
  1724. "physicalLocation": {
  1725. "artifactLocation": {
  1726. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1727. },
  1728. "region": {
  1729. "startLine": 859,
  1730. "startColumn": 9
  1731. }
  1732. }
  1733. },
  1734. "importance": "unimportant"
  1735. },
  1736. {
  1737. "location": {
  1738. "physicalLocation": {
  1739. "artifactLocation": {
  1740. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1741. },
  1742. "region": {
  1743. "startLine": 860,
  1744. "startColumn": 15
  1745. }
  1746. }
  1747. },
  1748. "importance": "unimportant"
  1749. },
  1750. {
  1751. "location": {
  1752. "physicalLocation": {
  1753. "artifactLocation": {
  1754. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1755. },
  1756. "region": {
  1757. "startLine": 862,
  1758. "startColumn": 21
  1759. }
  1760. }
  1761. },
  1762. "importance": "unimportant"
  1763. },
  1764. {
  1765. "location": {
  1766. "physicalLocation": {
  1767. "artifactLocation": {
  1768. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1769. },
  1770. "region": {
  1771. "startLine": 863,
  1772. "startColumn": 15
  1773. }
  1774. }
  1775. },
  1776. "importance": "unimportant"
  1777. },
  1778. {
  1779. "location": {
  1780. "physicalLocation": {
  1781. "artifactLocation": {
  1782. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1783. },
  1784. "region": {
  1785. "startLine": 864,
  1786. "startColumn": 13
  1787. }
  1788. }
  1789. },
  1790. "importance": "unimportant"
  1791. },
  1792. {
  1793. "location": {
  1794. "physicalLocation": {
  1795. "artifactLocation": {
  1796. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1797. },
  1798. "region": {
  1799. "startLine": 865,
  1800. "startColumn": 18
  1801. }
  1802. }
  1803. },
  1804. "importance": "unimportant"
  1805. },
  1806. {
  1807. "location": {
  1808. "physicalLocation": {
  1809. "artifactLocation": {
  1810. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1811. },
  1812. "region": {
  1813. "startLine": 866,
  1814. "startColumn": 16
  1815. }
  1816. }
  1817. },
  1818. "importance": "unimportant"
  1819. },
  1820. {
  1821. "location": {
  1822. "physicalLocation": {
  1823. "artifactLocation": {
  1824. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1825. },
  1826. "region": {
  1827. "startLine": 867,
  1828. "startColumn": 15
  1829. }
  1830. }
  1831. },
  1832. "importance": "unimportant"
  1833. },
  1834. {
  1835. "location": {
  1836. "physicalLocation": {
  1837. "artifactLocation": {
  1838. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1839. },
  1840. "region": {
  1841. "startLine": 868,
  1842. "startColumn": 18
  1843. }
  1844. }
  1845. },
  1846. "importance": "unimportant"
  1847. },
  1848. {
  1849. "location": {
  1850. "physicalLocation": {
  1851. "artifactLocation": {
  1852. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1853. },
  1854. "region": {
  1855. "startLine": 869,
  1856. "startColumn": 20
  1857. }
  1858. }
  1859. },
  1860. "importance": "unimportant"
  1861. },
  1862. {
  1863. "location": {
  1864. "physicalLocation": {
  1865. "artifactLocation": {
  1866. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1867. },
  1868. "region": {
  1869. "startLine": 870,
  1870. "startColumn": 10
  1871. }
  1872. }
  1873. },
  1874. "importance": "unimportant"
  1875. },
  1876. {
  1877. "location": {
  1878. "physicalLocation": {
  1879. "artifactLocation": {
  1880. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1881. },
  1882. "region": {
  1883. "startLine": 872,
  1884. "startColumn": 42
  1885. }
  1886. },
  1887. "message": {
  1888. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  1889. }
  1890. },
  1891. "kinds": [
  1892. "branch"
  1893. ],
  1894. "importance": "important"
  1895. },
  1896. {
  1897. "location": {
  1898. "physicalLocation": {
  1899. "artifactLocation": {
  1900. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1901. },
  1902. "region": {
  1903. "startLine": 877,
  1904. "startColumn": 49
  1905. }
  1906. },
  1907. "message": {
  1908. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  1909. }
  1910. },
  1911. "kinds": [
  1912. "branch"
  1913. ],
  1914. "importance": "important"
  1915. },
  1916. {
  1917. "location": {
  1918. "physicalLocation": {
  1919. "artifactLocation": {
  1920. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1921. },
  1922. "region": {
  1923. "startLine": 882,
  1924. "startColumn": 25
  1925. }
  1926. },
  1927. "message": {
  1928. "text": "In diese Verzweigung eintreten (Annahme: \"encoding_method==1\")"
  1929. }
  1930. },
  1931. "kinds": [
  1932. "branch"
  1933. ],
  1934. "importance": "important"
  1935. },
  1936. {
  1937. "location": {
  1938. "physicalLocation": {
  1939. "artifactLocation": {
  1940. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1941. },
  1942. "region": {
  1943. "startLine": 883,
  1944. "startColumn": 29
  1945. }
  1946. }
  1947. },
  1948. "importance": "unimportant"
  1949. },
  1950. {
  1951. "location": {
  1952. "physicalLocation": {
  1953. "artifactLocation": {
  1954. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1955. },
  1956. "region": {
  1957. "startLine": 884,
  1958. "startColumn": 13
  1959. }
  1960. }
  1961. },
  1962. "importance": "unimportant"
  1963. },
  1964. {
  1965. "location": {
  1966. "physicalLocation": {
  1967. "artifactLocation": {
  1968. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1969. },
  1970. "region": {
  1971. "startLine": 1101,
  1972. "startColumn": 7
  1973. }
  1974. }
  1975. },
  1976. "importance": "unimportant"
  1977. },
  1978. {
  1979. "location": {
  1980. "physicalLocation": {
  1981. "artifactLocation": {
  1982. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1983. },
  1984. "region": {
  1985. "startLine": 1102,
  1986. "startColumn": 20
  1987. }
  1988. },
  1989. "message": {
  1990. "text": "Diese Verzweigung überspringen (Annahme: \"fnc1_latch==1\" ist false)"
  1991. }
  1992. },
  1993. "kinds": [
  1994. "branch"
  1995. ],
  1996. "importance": "important"
  1997. },
  1998. {
  1999. "location": {
  2000. "physicalLocation": {
  2001. "artifactLocation": {
  2002. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2003. },
  2004. "region": {
  2005. "startLine": 1109,
  2006. "startColumn": 12
  2007. }
  2008. }
  2009. },
  2010. "importance": "unimportant"
  2011. },
  2012. {
  2013. "location": {
  2014. "physicalLocation": {
  2015. "artifactLocation": {
  2016. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2017. },
  2018. "region": {
  2019. "startLine": 1109,
  2020. "startColumn": 27
  2021. }
  2022. },
  2023. "message": {
  2024. "text": "In diese Schleife eintreten (Annahme: \"i<length\")"
  2025. }
  2026. },
  2027. "kinds": [
  2028. "branch"
  2029. ],
  2030. "importance": "important"
  2031. },
  2032. {
  2033. "location": {
  2034. "physicalLocation": {
  2035. "artifactLocation": {
  2036. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2037. },
  2038. "region": {
  2039. "startLine": 1111,
  2040. "startColumn": 15
  2041. }
  2042. },
  2043. "message": {
  2044. "text": "Diese Verzweigung überspringen (Annahme: \"i==ai_crop_posn\" ist false)"
  2045. }
  2046. },
  2047. "kinds": [
  2048. "branch"
  2049. ],
  2050. "importance": "important"
  2051. },
  2052. {
  2053. "location": {
  2054. "physicalLocation": {
  2055. "artifactLocation": {
  2056. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2057. },
  2058. "region": {
  2059. "startLine": 1114,
  2060. "startColumn": 30
  2061. }
  2062. }
  2063. },
  2064. "importance": "unimportant"
  2065. },
  2066. {
  2067. "location": {
  2068. "physicalLocation": {
  2069. "artifactLocation": {
  2070. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2071. },
  2072. "region": {
  2073. "startLine": 1115,
  2074. "startColumn": 14
  2075. }
  2076. },
  2077. "message": {
  2078. "text": "\"j\" kann gleich 1 sein."
  2079. }
  2080. },
  2081. "kinds": [
  2082. "declaration"
  2083. ],
  2084. "importance": "essential"
  2085. },
  2086. {
  2087. "location": {
  2088. "physicalLocation": {
  2089. "artifactLocation": {
  2090. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2091. },
  2092. "region": {
  2093. "startLine": 1109,
  2094. "startColumn": 38
  2095. }
  2096. }
  2097. },
  2098. "importance": "unimportant"
  2099. },
  2100. {
  2101. "location": {
  2102. "physicalLocation": {
  2103. "artifactLocation": {
  2104. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2105. },
  2106. "region": {
  2107. "startLine": 1109,
  2108. "startColumn": 27
  2109. }
  2110. },
  2111. "message": {
  2112. "text": "Diese Schleife beenden (\"i<length\" ist false)"
  2113. }
  2114. },
  2115. "kinds": [
  2116. "branch"
  2117. ],
  2118. "importance": "important"
  2119. },
  2120. {
  2121. "location": {
  2122. "physicalLocation": {
  2123. "artifactLocation": {
  2124. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2125. },
  2126. "region": {
  2127. "startLine": 1118,
  2128. "startColumn": 22
  2129. }
  2130. },
  2131. "message": {
  2132. "text": "Ungültiger Schreibvorgang nach \"general_field\" (außerhalb des schreibbaren Bereichs)"
  2133. }
  2134. },
  2135. "kinds": [
  2136. "usage"
  2137. ],
  2138. "importance": "essential"
  2139. }
  2140. ]
  2141. }
  2142. ]
  2143. }
  2144. ]
  2145. },
  2146. {
  2147. "ruleId": "C6262",
  2148. "message": {
  2149. "text": "Die Funktion verwendet \"30604\" Bytes vom Stapel und überschreitet /analyze:stacksize \"16384\". Verschieben Sie einige Daten auf den Heap."
  2150. },
  2151. "locations": [
  2152. {
  2153. "physicalLocation": {
  2154. "artifactLocation": {
  2155. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2156. },
  2157. "region": {
  2158. "startLine": 1213,
  2159. "startColumn": 12,
  2160. "endLine": 1213,
  2161. "endColumn": 12
  2162. }
  2163. },
  2164. "logicalLocations": [
  2165. {
  2166. "decoratedName": "cc_linear_dummy_run",
  2167. "kind": "function"
  2168. }
  2169. ]
  2170. }
  2171. ]
  2172. },
  2173. {
  2174. "ruleId": "C6255",
  2175. "message": {
  2176. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  2177. },
  2178. "locations": [
  2179. {
  2180. "physicalLocation": {
  2181. "artifactLocation": {
  2182. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2183. },
  2184. "region": {
  2185. "startLine": 1240,
  2186. "startColumn": 36,
  2187. "endLine": 1240,
  2188. "endColumn": 36
  2189. }
  2190. },
  2191. "logicalLocations": [
  2192. {
  2193. "decoratedName": "composite",
  2194. "kind": "function"
  2195. }
  2196. ]
  2197. }
  2198. ]
  2199. }
  2200. ],
  2201. "tool": {
  2202. "driver": {
  2203. "name": "PREfast",
  2204. "fullName": "PREfast Code Analysis",
  2205. "version": "14.29.30159.0",
  2206. "informationUri": "https://aka.ms/cpp/ca"
  2207. }
  2208. },
  2209. "invocations": [
  2210. {
  2211. "commandLine": "D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\c1.dll -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF62CE9FC60 -il C:\\Users\\wruser\\AppData\\Local\\Temp\\_CL_c20fd839ast -typedil -f ..\\..\\thirdparty\\zint\\backend\\composite.c -Ze -D_MSC_EXTENSIONS -Zp16 -pc \\:/ -D_MSC_VER=1929 -D_MSC_FULL_VER=192930159 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\zxing-cpp\\core\\src -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\scripts\\zxing-cpp\\ -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\zint\\backend -nologo -W 3 -diagnostics:column -GF -Og -Ot -Oy -Oi -ltcg -DCODE_ANALYSIS -DZXING_HAS_CHAR8 -DZXING_USE_ZINT -DZXING_EXPERIMENTAL_API -DZINT_NO_PNG -D_CRT_SECURE_NO_WARNINGS -DWIN32 -DNDEBUG -D_LIB -D_MT -D_DLL -GS -D_M_FP_PRECISE -Fox64\\Release\\libzxing\\composite.obj -FdC:\\Users\\wruser\\source\\repos\\SharpMuPDF\\x64\\Release\\libzxing.pdb -external:W 3 -Gd -wd 4244 -wd 4267 -wd 4566 -wd 4018 -analyze:projectdirectory C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\platform\\win32 -analyze:rulesetdirectory ;D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\\\Rule Sets; -analyze:ruleset D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:quiet -analyze:plugin D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\EspXEngine.dll -FC -errorreport:prompt -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -external:I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -external:I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um",
  2212. "executionSuccessful": true
  2213. }
  2214. ],
  2215. "artifacts": [
  2216. {
  2217. "location": {
  2218. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/emf.c"
  2219. },
  2220. "roles": [
  2221. "analysisTarget",
  2222. "resultFile"
  2223. ],
  2224. "hashes": {
  2225. "md5": "6d535616aa38ecd3bd9157b4f1ba2f1e"
  2226. }
  2227. },
  2228. {
  2229. "location": {
  2230. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/common.h"
  2231. },
  2232. "hashes": {
  2233. "md5": "4204dbbc879b836e2d98ba7e947037ca"
  2234. }
  2235. },
  2236. {
  2237. "location": {
  2238. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/zint.h"
  2239. },
  2240. "hashes": {
  2241. "md5": "52ace3d3df4d440075f3460c1759b827"
  2242. }
  2243. },
  2244. {
  2245. "location": {
  2246. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/zintconfig.h"
  2247. },
  2248. "hashes": {
  2249. "md5": "c79a63ec9936f235fa16610640c6ddb4"
  2250. }
  2251. },
  2252. {
  2253. "location": {
  2254. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/filemem.h"
  2255. },
  2256. "hashes": {
  2257. "md5": "6af75d55db05fdefb3fdc0db6e6fb1a2"
  2258. }
  2259. },
  2260. {
  2261. "location": {
  2262. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/output.h"
  2263. },
  2264. "hashes": {
  2265. "md5": "15c62089655f396890f0d781baffdfef"
  2266. }
  2267. },
  2268. {
  2269. "location": {
  2270. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/emf.h"
  2271. },
  2272. "hashes": {
  2273. "md5": "998da547ba5b99b51f7a0b0f1f0a47c9"
  2274. }
  2275. },
  2276. {
  2277. "location": {
  2278. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/eci.c"
  2279. },
  2280. "roles": [
  2281. "analysisTarget",
  2282. "resultFile"
  2283. ],
  2284. "hashes": {
  2285. "md5": "e9678c6c10d7b5d416c03c8858c45a9b"
  2286. }
  2287. },
  2288. {
  2289. "location": {
  2290. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/eci.h"
  2291. },
  2292. "hashes": {
  2293. "md5": "f2f0f7c011dc0a0d7c510f2fdbc70c6c"
  2294. }
  2295. },
  2296. {
  2297. "location": {
  2298. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/eci_sb.h"
  2299. },
  2300. "hashes": {
  2301. "md5": "26ea335e85f642fb5339f3fc239e686a"
  2302. }
  2303. },
  2304. {
  2305. "location": {
  2306. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/big5.h"
  2307. },
  2308. "hashes": {
  2309. "md5": "e0c8c14a7b09e5675d12982e3cb39a32"
  2310. }
  2311. },
  2312. {
  2313. "location": {
  2314. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gb18030.h"
  2315. },
  2316. "hashes": {
  2317. "md5": "39f30b9e58753bc6f287fcecb6cc0cfa"
  2318. }
  2319. },
  2320. {
  2321. "location": {
  2322. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gb2312.h"
  2323. },
  2324. "hashes": {
  2325. "md5": "6fce7e1ba34bc0c1375189bd99e55a72"
  2326. }
  2327. },
  2328. {
  2329. "location": {
  2330. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gbk.h"
  2331. },
  2332. "hashes": {
  2333. "md5": "3d5503c61be97727c804403048bd4233"
  2334. }
  2335. },
  2336. {
  2337. "location": {
  2338. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/ksx1001.h"
  2339. },
  2340. "hashes": {
  2341. "md5": "55d60b433b9a99e93afe5a233085f810"
  2342. }
  2343. },
  2344. {
  2345. "location": {
  2346. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/sjis.h"
  2347. },
  2348. "hashes": {
  2349. "md5": "72248d7bc4d344332d8cac0034d817ee"
  2350. }
  2351. },
  2352. {
  2353. "location": {
  2354. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dxfilmedge.c"
  2355. },
  2356. "roles": [
  2357. "analysisTarget"
  2358. ],
  2359. "hashes": {
  2360. "md5": "f87df1bd444800d9edec38462b4cad23"
  2361. }
  2362. },
  2363. {
  2364. "location": {
  2365. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/dotcode.c"
  2366. },
  2367. "roles": [
  2368. "analysisTarget",
  2369. "resultFile"
  2370. ],
  2371. "hashes": {
  2372. "md5": "e3f523ef7dad9213e8e718188c429f89"
  2373. }
  2374. },
  2375. {
  2376. "location": {
  2377. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gs1.h"
  2378. },
  2379. "hashes": {
  2380. "md5": "d43346840a9524bd9b70a3ab634e2a1c"
  2381. }
  2382. },
  2383. {
  2384. "location": {
  2385. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/dmatrix.c"
  2386. },
  2387. "roles": [
  2388. "analysisTarget",
  2389. "resultFile"
  2390. ],
  2391. "hashes": {
  2392. "md5": "a941e5f609274d08ab76dc67c39f935b"
  2393. }
  2394. },
  2395. {
  2396. "location": {
  2397. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/reedsol.h"
  2398. },
  2399. "hashes": {
  2400. "md5": "689adb6be13e830305cac3006456111e"
  2401. }
  2402. },
  2403. {
  2404. "location": {
  2405. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dmatrix.h"
  2406. },
  2407. "hashes": {
  2408. "md5": "f85867e1c76fd4d6d302cbece71b590e"
  2409. }
  2410. },
  2411. {
  2412. "location": {
  2413. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dmatrix_trace.h"
  2414. },
  2415. "hashes": {
  2416. "md5": "89ffd7e33d004369193a5e51ebb714c5"
  2417. }
  2418. },
  2419. {
  2420. "location": {
  2421. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dllversion.c"
  2422. },
  2423. "roles": [
  2424. "analysisTarget"
  2425. ],
  2426. "hashes": {
  2427. "md5": "06d0a86da29c0fe0e1a6995db79b956d"
  2428. }
  2429. },
  2430. {
  2431. "location": {
  2432. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2433. },
  2434. "roles": [
  2435. "analysisTarget",
  2436. "resultFile"
  2437. ],
  2438. "hashes": {
  2439. "md5": "68d22ba1cb0ccafcb1da0ba9fd50037f"
  2440. }
  2441. },
  2442. {
  2443. "location": {
  2444. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/pdf417.h"
  2445. },
  2446. "hashes": {
  2447. "md5": "b72ee8e321017130fed546f1b39c4486"
  2448. }
  2449. },
  2450. {
  2451. "location": {
  2452. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/general_field.h"
  2453. },
  2454. "hashes": {
  2455. "md5": "02523de2512651998303587be5f0a3e6"
  2456. }
  2457. },
  2458. {
  2459. "location": {
  2460. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/composite.h"
  2461. },
  2462. "hashes": {
  2463. "md5": "adfd98cf740d9430309d6a5ac6703d61"
  2464. }
  2465. }
  2466. ]
  2467. }
  2468. ]
  2469. }