library.nativecodeanalysis.sarif 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  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/library.c"
  17. },
  18. "region": {
  19. "startLine": 644,
  20. "startColumn": 55,
  21. "endLine": 644,
  22. "endColumn": 55
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "reduced_charset",
  28. "kind": "function"
  29. }
  30. ]
  31. }
  32. ]
  33. },
  34. {
  35. "ruleId": "C6255",
  36. "message": {
  37. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  38. },
  39. "locations": [
  40. {
  41. "physicalLocation": {
  42. "artifactLocation": {
  43. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  44. },
  45. "region": {
  46. "startLine": 645,
  47. "startColumn": 32,
  48. "endLine": 645,
  49. "endColumn": 32
  50. }
  51. },
  52. "logicalLocations": [
  53. {
  54. "decoratedName": "reduced_charset",
  55. "kind": "function"
  56. }
  57. ]
  58. }
  59. ]
  60. },
  61. {
  62. "ruleId": "C6255",
  63. "message": {
  64. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  65. },
  66. "locations": [
  67. {
  68. "physicalLocation": {
  69. "artifactLocation": {
  70. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  71. },
  72. "region": {
  73. "startLine": 650,
  74. "startColumn": 61,
  75. "endLine": 650,
  76. "endColumn": 61
  77. }
  78. },
  79. "logicalLocations": [
  80. {
  81. "decoratedName": "reduced_charset",
  82. "kind": "function"
  83. }
  84. ]
  85. }
  86. ]
  87. },
  88. {
  89. "ruleId": "C6385",
  90. "message": {
  91. "text": "Lesen ungültiger Daten von \"local_segs\": die lesbare Größe beträgt \"sizeof(zint_seg)*seg_count\" Byte, es können jedoch \"32\" Byte gelesen werden."
  92. },
  93. "locations": [
  94. {
  95. "physicalLocation": {
  96. "artifactLocation": {
  97. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  98. },
  99. "region": {
  100. "startLine": 657,
  101. "startColumn": 30
  102. }
  103. },
  104. "logicalLocations": [
  105. {
  106. "decoratedName": "reduced_charset",
  107. "kind": "function"
  108. }
  109. ]
  110. }
  111. ],
  112. "codeFlows": [
  113. {
  114. "threadFlows": [
  115. {
  116. "locations": [
  117. {
  118. "location": {
  119. "physicalLocation": {
  120. "artifactLocation": {
  121. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  122. },
  123. "region": {
  124. "startLine": 642,
  125. "startColumn": 9
  126. }
  127. }
  128. },
  129. "importance": "unimportant"
  130. },
  131. {
  132. "location": {
  133. "physicalLocation": {
  134. "artifactLocation": {
  135. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  136. },
  137. "region": {
  138. "startLine": 643,
  139. "startColumn": 9
  140. }
  141. }
  142. },
  143. "importance": "unimportant"
  144. },
  145. {
  146. "location": {
  147. "physicalLocation": {
  148. "artifactLocation": {
  149. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  150. },
  151. "region": {
  152. "startLine": 644,
  153. "startColumn": 22
  154. }
  155. },
  156. "message": {
  157. "text": "\"local_segs\" ist ein Array mit 0 Byte."
  158. }
  159. },
  160. "kinds": [
  161. "declaration"
  162. ],
  163. "importance": "essential"
  164. },
  165. {
  166. "location": {
  167. "physicalLocation": {
  168. "artifactLocation": {
  169. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  170. },
  171. "region": {
  172. "startLine": 645,
  173. "startColumn": 10
  174. }
  175. }
  176. },
  177. "importance": "unimportant"
  178. },
  179. {
  180. "location": {
  181. "physicalLocation": {
  182. "artifactLocation": {
  183. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  184. },
  185. "region": {
  186. "startLine": 647,
  187. "startColumn": 53
  188. }
  189. },
  190. "message": {
  191. "text": "In diese Verzweigung eintreten (Annahme: \"<Verzweigungsbedingung>\")"
  192. }
  193. },
  194. "kinds": [
  195. "branch"
  196. ],
  197. "importance": "important"
  198. },
  199. {
  200. "location": {
  201. "physicalLocation": {
  202. "artifactLocation": {
  203. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  204. },
  205. "region": {
  206. "startLine": 648,
  207. "startColumn": 24
  208. }
  209. }
  210. },
  211. "importance": "unimportant"
  212. },
  213. {
  214. "location": {
  215. "physicalLocation": {
  216. "artifactLocation": {
  217. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  218. },
  219. "region": {
  220. "startLine": 649,
  221. "startColumn": 19
  222. }
  223. }
  224. },
  225. "importance": "unimportant"
  226. },
  227. {
  228. "location": {
  229. "physicalLocation": {
  230. "artifactLocation": {
  231. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  232. },
  233. "region": {
  234. "startLine": 650,
  235. "startColumn": 24
  236. }
  237. }
  238. },
  239. "importance": "unimportant"
  240. },
  241. {
  242. "location": {
  243. "physicalLocation": {
  244. "artifactLocation": {
  245. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  246. },
  247. "region": {
  248. "startLine": 653,
  249. "startColumn": 17
  250. }
  251. },
  252. "message": {
  253. "text": "\"local_segs\" ist ein Eingabe-/Ausgabeargument für \"segs_cpy\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\zint\\backend\\common.h:312 deklariert)"
  254. }
  255. },
  256. "kinds": [
  257. "declaration"
  258. ],
  259. "importance": "important"
  260. },
  261. {
  262. "location": {
  263. "physicalLocation": {
  264. "artifactLocation": {
  265. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  266. },
  267. "region": {
  268. "startLine": 654,
  269. "startColumn": 22
  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/library.c"
  280. },
  281. "region": {
  282. "startLine": 655,
  283. "startColumn": 16
  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/library.c"
  294. },
  295. "region": {
  296. "startLine": 655,
  297. "startColumn": 23
  298. }
  299. },
  300. "message": {
  301. "text": "In diese Schleife eintreten (Annahme: \"i<seg_count\")"
  302. }
  303. },
  304. "kinds": [
  305. "branch"
  306. ],
  307. "importance": "important"
  308. },
  309. {
  310. "location": {
  311. "physicalLocation": {
  312. "artifactLocation": {
  313. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  314. },
  315. "region": {
  316. "startLine": 656,
  317. "startColumn": 28
  318. }
  319. },
  320. "message": {
  321. "text": "In diese Verzweigung eintreten (Annahme: \"convertible[i]\")"
  322. }
  323. },
  324. "kinds": [
  325. "branch"
  326. ],
  327. "importance": "important"
  328. },
  329. {
  330. "location": {
  331. "physicalLocation": {
  332. "artifactLocation": {
  333. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  334. },
  335. "region": {
  336. "startLine": 657,
  337. "startColumn": 30
  338. }
  339. }
  340. },
  341. "importance": "unimportant"
  342. },
  343. {
  344. "location": {
  345. "physicalLocation": {
  346. "artifactLocation": {
  347. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  348. },
  349. "region": {
  350. "startLine": 659,
  351. "startColumn": 34
  352. }
  353. },
  354. "message": {
  355. "text": "Diese Verzweigung überspringen (Annahme: \"error_number!=0\" ist false)"
  356. }
  357. },
  358. "kinds": [
  359. "branch"
  360. ],
  361. "importance": "important"
  362. },
  363. {
  364. "location": {
  365. "physicalLocation": {
  366. "artifactLocation": {
  367. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  368. },
  369. "region": {
  370. "startLine": 666,
  371. "startColumn": 38
  372. }
  373. }
  374. },
  375. "importance": "unimportant"
  376. },
  377. {
  378. "location": {
  379. "physicalLocation": {
  380. "artifactLocation": {
  381. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  382. },
  383. "region": {
  384. "startLine": 667,
  385. "startColumn": 30
  386. }
  387. }
  388. },
  389. "importance": "unimportant"
  390. },
  391. {
  392. "location": {
  393. "physicalLocation": {
  394. "artifactLocation": {
  395. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  396. },
  397. "region": {
  398. "startLine": 655,
  399. "startColumn": 37
  400. }
  401. },
  402. "message": {
  403. "text": "\"i\" kann gleich 2 sein."
  404. }
  405. },
  406. "kinds": [
  407. "declaration"
  408. ],
  409. "importance": "essential"
  410. },
  411. {
  412. "location": {
  413. "physicalLocation": {
  414. "artifactLocation": {
  415. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  416. },
  417. "region": {
  418. "startLine": 655,
  419. "startColumn": 23
  420. }
  421. },
  422. "message": {
  423. "text": "Diese Schleife fortsetzen (Annahme: \"i<seg_count\")"
  424. }
  425. },
  426. "kinds": [
  427. "branch"
  428. ],
  429. "importance": "important"
  430. },
  431. {
  432. "location": {
  433. "physicalLocation": {
  434. "artifactLocation": {
  435. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  436. },
  437. "region": {
  438. "startLine": 656,
  439. "startColumn": 28
  440. }
  441. },
  442. "message": {
  443. "text": "In diese Verzweigung eintreten (Annahme: \"convertible[i]\")"
  444. }
  445. },
  446. "kinds": [
  447. "branch"
  448. ],
  449. "importance": "important"
  450. },
  451. {
  452. "location": {
  453. "physicalLocation": {
  454. "artifactLocation": {
  455. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  456. },
  457. "region": {
  458. "startLine": 657,
  459. "startColumn": 30
  460. }
  461. },
  462. "message": {
  463. "text": "\"i\" ist ein Eingabe-/Ausgabeargument für \"utf8_to_eci\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\zint\\backend\\eci.h:46 deklariert)"
  464. }
  465. },
  466. "kinds": [
  467. "declaration"
  468. ],
  469. "importance": "important"
  470. },
  471. {
  472. "location": {
  473. "physicalLocation": {
  474. "artifactLocation": {
  475. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  476. },
  477. "region": {
  478. "startLine": 657,
  479. "startColumn": 30
  480. }
  481. },
  482. "message": {
  483. "text": "Ungültiger Lesevorgang von \"local_segs\" (außerhalb des lesbaren Bereichs)"
  484. }
  485. },
  486. "kinds": [
  487. "usage"
  488. ],
  489. "importance": "essential"
  490. }
  491. ]
  492. }
  493. ]
  494. }
  495. ]
  496. },
  497. {
  498. "ruleId": "C6385",
  499. "message": {
  500. "text": "Lesen ungültiger Daten von \"convertible\": die lesbare Größe beträgt \"sizeof(int)*seg_count\" Byte, es können jedoch \"8\" Byte gelesen werden."
  501. },
  502. "locations": [
  503. {
  504. "physicalLocation": {
  505. "artifactLocation": {
  506. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  507. },
  508. "region": {
  509. "startLine": 656,
  510. "startColumn": 17,
  511. "endLine": 656,
  512. "endColumn": 29
  513. }
  514. },
  515. "logicalLocations": [
  516. {
  517. "decoratedName": "reduced_charset",
  518. "kind": "function"
  519. }
  520. ]
  521. }
  522. ],
  523. "codeFlows": [
  524. {
  525. "threadFlows": [
  526. {
  527. "locations": [
  528. {
  529. "location": {
  530. "physicalLocation": {
  531. "artifactLocation": {
  532. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  533. },
  534. "region": {
  535. "startLine": 642,
  536. "startColumn": 9
  537. }
  538. }
  539. },
  540. "importance": "unimportant"
  541. },
  542. {
  543. "location": {
  544. "physicalLocation": {
  545. "artifactLocation": {
  546. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  547. },
  548. "region": {
  549. "startLine": 643,
  550. "startColumn": 9
  551. }
  552. }
  553. },
  554. "importance": "unimportant"
  555. },
  556. {
  557. "location": {
  558. "physicalLocation": {
  559. "artifactLocation": {
  560. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  561. },
  562. "region": {
  563. "startLine": 644,
  564. "startColumn": 22
  565. }
  566. }
  567. },
  568. "importance": "unimportant"
  569. },
  570. {
  571. "location": {
  572. "physicalLocation": {
  573. "artifactLocation": {
  574. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  575. },
  576. "region": {
  577. "startLine": 645,
  578. "startColumn": 10
  579. }
  580. },
  581. "message": {
  582. "text": "\"convertible\" ist ein Array mit 0 Byte."
  583. }
  584. },
  585. "kinds": [
  586. "declaration"
  587. ],
  588. "importance": "essential"
  589. },
  590. {
  591. "location": {
  592. "physicalLocation": {
  593. "artifactLocation": {
  594. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  595. },
  596. "region": {
  597. "startLine": 647,
  598. "startColumn": 53
  599. }
  600. },
  601. "message": {
  602. "text": "\"convertible\" ist ein Eingabe-/Ausgabeargument für \"is_eci_convertible_segs\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\zint\\backend\\eci.h:41 deklariert)"
  603. }
  604. },
  605. "kinds": [
  606. "declaration"
  607. ],
  608. "importance": "important"
  609. },
  610. {
  611. "location": {
  612. "physicalLocation": {
  613. "artifactLocation": {
  614. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  615. },
  616. "region": {
  617. "startLine": 647,
  618. "startColumn": 53
  619. }
  620. },
  621. "message": {
  622. "text": "In diese Verzweigung eintreten (Annahme: \"<Verzweigungsbedingung>\")"
  623. }
  624. },
  625. "kinds": [
  626. "branch"
  627. ],
  628. "importance": "important"
  629. },
  630. {
  631. "location": {
  632. "physicalLocation": {
  633. "artifactLocation": {
  634. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  635. },
  636. "region": {
  637. "startLine": 648,
  638. "startColumn": 24
  639. }
  640. }
  641. },
  642. "importance": "unimportant"
  643. },
  644. {
  645. "location": {
  646. "physicalLocation": {
  647. "artifactLocation": {
  648. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  649. },
  650. "region": {
  651. "startLine": 649,
  652. "startColumn": 19
  653. }
  654. }
  655. },
  656. "importance": "unimportant"
  657. },
  658. {
  659. "location": {
  660. "physicalLocation": {
  661. "artifactLocation": {
  662. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  663. },
  664. "region": {
  665. "startLine": 650,
  666. "startColumn": 24
  667. }
  668. }
  669. },
  670. "importance": "unimportant"
  671. },
  672. {
  673. "location": {
  674. "physicalLocation": {
  675. "artifactLocation": {
  676. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  677. },
  678. "region": {
  679. "startLine": 653,
  680. "startColumn": 17
  681. }
  682. }
  683. },
  684. "importance": "unimportant"
  685. },
  686. {
  687. "location": {
  688. "physicalLocation": {
  689. "artifactLocation": {
  690. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  691. },
  692. "region": {
  693. "startLine": 654,
  694. "startColumn": 22
  695. }
  696. }
  697. },
  698. "importance": "unimportant"
  699. },
  700. {
  701. "location": {
  702. "physicalLocation": {
  703. "artifactLocation": {
  704. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  705. },
  706. "region": {
  707. "startLine": 655,
  708. "startColumn": 16
  709. }
  710. }
  711. },
  712. "importance": "unimportant"
  713. },
  714. {
  715. "location": {
  716. "physicalLocation": {
  717. "artifactLocation": {
  718. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  719. },
  720. "region": {
  721. "startLine": 655,
  722. "startColumn": 23
  723. }
  724. },
  725. "message": {
  726. "text": "In diese Schleife eintreten (Annahme: \"i<seg_count\")"
  727. }
  728. },
  729. "kinds": [
  730. "branch"
  731. ],
  732. "importance": "important"
  733. },
  734. {
  735. "location": {
  736. "physicalLocation": {
  737. "artifactLocation": {
  738. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  739. },
  740. "region": {
  741. "startLine": 656,
  742. "startColumn": 28
  743. }
  744. },
  745. "message": {
  746. "text": "Diese Verzweigung überspringen (Annahme: \"convertible[i]\" ist false)"
  747. }
  748. },
  749. "kinds": [
  750. "branch"
  751. ],
  752. "importance": "important"
  753. },
  754. {
  755. "location": {
  756. "physicalLocation": {
  757. "artifactLocation": {
  758. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  759. },
  760. "region": {
  761. "startLine": 655,
  762. "startColumn": 37
  763. }
  764. },
  765. "message": {
  766. "text": "\"i\" kann gleich 1 sein."
  767. }
  768. },
  769. "kinds": [
  770. "declaration"
  771. ],
  772. "importance": "essential"
  773. },
  774. {
  775. "location": {
  776. "physicalLocation": {
  777. "artifactLocation": {
  778. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  779. },
  780. "region": {
  781. "startLine": 655,
  782. "startColumn": 23
  783. }
  784. },
  785. "message": {
  786. "text": "Diese Schleife fortsetzen (Annahme: \"i<seg_count\")"
  787. }
  788. },
  789. "kinds": [
  790. "branch"
  791. ],
  792. "importance": "important"
  793. },
  794. {
  795. "location": {
  796. "physicalLocation": {
  797. "artifactLocation": {
  798. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  799. },
  800. "region": {
  801. "startLine": 656,
  802. "startColumn": 28
  803. }
  804. },
  805. "message": {
  806. "text": "Diese Verzweigung überspringen (Annahme: \"convertible[i]\" ist false)"
  807. }
  808. },
  809. "kinds": [
  810. "branch"
  811. ],
  812. "importance": "important"
  813. },
  814. {
  815. "location": {
  816. "physicalLocation": {
  817. "artifactLocation": {
  818. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  819. },
  820. "region": {
  821. "startLine": 656,
  822. "startColumn": 28
  823. }
  824. },
  825. "message": {
  826. "text": "Ungültiger Lesevorgang von \"convertible\" (außerhalb des lesbaren Bereichs)"
  827. }
  828. },
  829. "kinds": [
  830. "usage"
  831. ],
  832. "importance": "essential"
  833. }
  834. ]
  835. }
  836. ]
  837. }
  838. ]
  839. },
  840. {
  841. "ruleId": "C6386",
  842. "message": {
  843. "text": "Pufferüberlauf beim Schreiben nach \"local_segs\": die schreibbare Größe beträgt \"sizeof(zint_seg)*seg_count\" Byte, es können jedoch \"32\" Byte geschrieben werden."
  844. },
  845. "locations": [
  846. {
  847. "physicalLocation": {
  848. "artifactLocation": {
  849. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  850. },
  851. "region": {
  852. "startLine": 666,
  853. "startColumn": 17,
  854. "endLine": 666,
  855. "endColumn": 40
  856. }
  857. },
  858. "logicalLocations": [
  859. {
  860. "decoratedName": "reduced_charset",
  861. "kind": "function"
  862. }
  863. ]
  864. }
  865. ],
  866. "codeFlows": [
  867. {
  868. "threadFlows": [
  869. {
  870. "locations": [
  871. {
  872. "location": {
  873. "physicalLocation": {
  874. "artifactLocation": {
  875. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  876. },
  877. "region": {
  878. "startLine": 642,
  879. "startColumn": 9
  880. }
  881. }
  882. },
  883. "importance": "unimportant"
  884. },
  885. {
  886. "location": {
  887. "physicalLocation": {
  888. "artifactLocation": {
  889. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  890. },
  891. "region": {
  892. "startLine": 643,
  893. "startColumn": 9
  894. }
  895. }
  896. },
  897. "importance": "unimportant"
  898. },
  899. {
  900. "location": {
  901. "physicalLocation": {
  902. "artifactLocation": {
  903. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  904. },
  905. "region": {
  906. "startLine": 644,
  907. "startColumn": 22
  908. }
  909. },
  910. "message": {
  911. "text": "\"local_segs\" ist ein Array mit 0 Byte."
  912. }
  913. },
  914. "kinds": [
  915. "declaration"
  916. ],
  917. "importance": "essential"
  918. },
  919. {
  920. "location": {
  921. "physicalLocation": {
  922. "artifactLocation": {
  923. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  924. },
  925. "region": {
  926. "startLine": 645,
  927. "startColumn": 10
  928. }
  929. }
  930. },
  931. "importance": "unimportant"
  932. },
  933. {
  934. "location": {
  935. "physicalLocation": {
  936. "artifactLocation": {
  937. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  938. },
  939. "region": {
  940. "startLine": 647,
  941. "startColumn": 53
  942. }
  943. },
  944. "message": {
  945. "text": "In diese Verzweigung eintreten (Annahme: \"<Verzweigungsbedingung>\")"
  946. }
  947. },
  948. "kinds": [
  949. "branch"
  950. ],
  951. "importance": "important"
  952. },
  953. {
  954. "location": {
  955. "physicalLocation": {
  956. "artifactLocation": {
  957. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  958. },
  959. "region": {
  960. "startLine": 648,
  961. "startColumn": 24
  962. }
  963. }
  964. },
  965. "importance": "unimportant"
  966. },
  967. {
  968. "location": {
  969. "physicalLocation": {
  970. "artifactLocation": {
  971. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  972. },
  973. "region": {
  974. "startLine": 649,
  975. "startColumn": 19
  976. }
  977. }
  978. },
  979. "importance": "unimportant"
  980. },
  981. {
  982. "location": {
  983. "physicalLocation": {
  984. "artifactLocation": {
  985. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  986. },
  987. "region": {
  988. "startLine": 650,
  989. "startColumn": 24
  990. }
  991. }
  992. },
  993. "importance": "unimportant"
  994. },
  995. {
  996. "location": {
  997. "physicalLocation": {
  998. "artifactLocation": {
  999. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1000. },
  1001. "region": {
  1002. "startLine": 653,
  1003. "startColumn": 17
  1004. }
  1005. },
  1006. "message": {
  1007. "text": "\"local_segs\" ist ein Eingabe-/Ausgabeargument für \"segs_cpy\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\zint\\backend\\common.h:312 deklariert)"
  1008. }
  1009. },
  1010. "kinds": [
  1011. "declaration"
  1012. ],
  1013. "importance": "important"
  1014. },
  1015. {
  1016. "location": {
  1017. "physicalLocation": {
  1018. "artifactLocation": {
  1019. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1020. },
  1021. "region": {
  1022. "startLine": 654,
  1023. "startColumn": 22
  1024. }
  1025. }
  1026. },
  1027. "importance": "unimportant"
  1028. },
  1029. {
  1030. "location": {
  1031. "physicalLocation": {
  1032. "artifactLocation": {
  1033. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1034. },
  1035. "region": {
  1036. "startLine": 655,
  1037. "startColumn": 16
  1038. }
  1039. }
  1040. },
  1041. "importance": "unimportant"
  1042. },
  1043. {
  1044. "location": {
  1045. "physicalLocation": {
  1046. "artifactLocation": {
  1047. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1048. },
  1049. "region": {
  1050. "startLine": 655,
  1051. "startColumn": 23
  1052. }
  1053. },
  1054. "message": {
  1055. "text": "In diese Schleife eintreten (Annahme: \"i<seg_count\")"
  1056. }
  1057. },
  1058. "kinds": [
  1059. "branch"
  1060. ],
  1061. "importance": "important"
  1062. },
  1063. {
  1064. "location": {
  1065. "physicalLocation": {
  1066. "artifactLocation": {
  1067. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1068. },
  1069. "region": {
  1070. "startLine": 656,
  1071. "startColumn": 28
  1072. }
  1073. },
  1074. "message": {
  1075. "text": "In diese Verzweigung eintreten (Annahme: \"convertible[i]\")"
  1076. }
  1077. },
  1078. "kinds": [
  1079. "branch"
  1080. ],
  1081. "importance": "important"
  1082. },
  1083. {
  1084. "location": {
  1085. "physicalLocation": {
  1086. "artifactLocation": {
  1087. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1088. },
  1089. "region": {
  1090. "startLine": 657,
  1091. "startColumn": 30
  1092. }
  1093. }
  1094. },
  1095. "importance": "unimportant"
  1096. },
  1097. {
  1098. "location": {
  1099. "physicalLocation": {
  1100. "artifactLocation": {
  1101. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1102. },
  1103. "region": {
  1104. "startLine": 659,
  1105. "startColumn": 34
  1106. }
  1107. },
  1108. "message": {
  1109. "text": "Diese Verzweigung überspringen (Annahme: \"error_number!=0\" ist false)"
  1110. }
  1111. },
  1112. "kinds": [
  1113. "branch"
  1114. ],
  1115. "importance": "important"
  1116. },
  1117. {
  1118. "location": {
  1119. "physicalLocation": {
  1120. "artifactLocation": {
  1121. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1122. },
  1123. "region": {
  1124. "startLine": 666,
  1125. "startColumn": 38
  1126. }
  1127. }
  1128. },
  1129. "importance": "unimportant"
  1130. },
  1131. {
  1132. "location": {
  1133. "physicalLocation": {
  1134. "artifactLocation": {
  1135. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1136. },
  1137. "region": {
  1138. "startLine": 667,
  1139. "startColumn": 30
  1140. }
  1141. }
  1142. },
  1143. "importance": "unimportant"
  1144. },
  1145. {
  1146. "location": {
  1147. "physicalLocation": {
  1148. "artifactLocation": {
  1149. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1150. },
  1151. "region": {
  1152. "startLine": 655,
  1153. "startColumn": 37
  1154. }
  1155. },
  1156. "message": {
  1157. "text": "\"i\" kann gleich 2 sein."
  1158. }
  1159. },
  1160. "kinds": [
  1161. "declaration"
  1162. ],
  1163. "importance": "essential"
  1164. },
  1165. {
  1166. "location": {
  1167. "physicalLocation": {
  1168. "artifactLocation": {
  1169. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1170. },
  1171. "region": {
  1172. "startLine": 655,
  1173. "startColumn": 23
  1174. }
  1175. },
  1176. "message": {
  1177. "text": "Diese Schleife fortsetzen (Annahme: \"i<seg_count\")"
  1178. }
  1179. },
  1180. "kinds": [
  1181. "branch"
  1182. ],
  1183. "importance": "important"
  1184. },
  1185. {
  1186. "location": {
  1187. "physicalLocation": {
  1188. "artifactLocation": {
  1189. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1190. },
  1191. "region": {
  1192. "startLine": 656,
  1193. "startColumn": 28
  1194. }
  1195. },
  1196. "message": {
  1197. "text": "In diese Verzweigung eintreten (Annahme: \"convertible[i]\")"
  1198. }
  1199. },
  1200. "kinds": [
  1201. "branch"
  1202. ],
  1203. "importance": "important"
  1204. },
  1205. {
  1206. "location": {
  1207. "physicalLocation": {
  1208. "artifactLocation": {
  1209. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1210. },
  1211. "region": {
  1212. "startLine": 657,
  1213. "startColumn": 30
  1214. }
  1215. },
  1216. "message": {
  1217. "text": "\"i\" ist ein Eingabe-/Ausgabeargument für \"utf8_to_eci\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\zint\\backend\\eci.h:46 deklariert)"
  1218. }
  1219. },
  1220. "kinds": [
  1221. "declaration"
  1222. ],
  1223. "importance": "important"
  1224. },
  1225. {
  1226. "location": {
  1227. "physicalLocation": {
  1228. "artifactLocation": {
  1229. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1230. },
  1231. "region": {
  1232. "startLine": 659,
  1233. "startColumn": 34
  1234. }
  1235. },
  1236. "message": {
  1237. "text": "Diese Verzweigung überspringen (Annahme: \"error_number!=0\" ist false)"
  1238. }
  1239. },
  1240. "kinds": [
  1241. "branch"
  1242. ],
  1243. "importance": "important"
  1244. },
  1245. {
  1246. "location": {
  1247. "physicalLocation": {
  1248. "artifactLocation": {
  1249. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1250. },
  1251. "region": {
  1252. "startLine": 666,
  1253. "startColumn": 38
  1254. }
  1255. },
  1256. "message": {
  1257. "text": "Ungültiger Schreibvorgang nach \"local_segs\" (außerhalb des schreibbaren Bereichs)"
  1258. }
  1259. },
  1260. "kinds": [
  1261. "usage"
  1262. ],
  1263. "importance": "essential"
  1264. }
  1265. ]
  1266. }
  1267. ]
  1268. }
  1269. ]
  1270. },
  1271. {
  1272. "ruleId": "C6255",
  1273. "message": {
  1274. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  1275. },
  1276. "locations": [
  1277. {
  1278. "physicalLocation": {
  1279. "artifactLocation": {
  1280. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1281. },
  1282. "region": {
  1283. "startLine": 1021,
  1284. "startColumn": 38,
  1285. "endLine": 1021,
  1286. "endColumn": 38
  1287. }
  1288. },
  1289. "logicalLocations": [
  1290. {
  1291. "decoratedName": "ZBarcode_Encode_Segs",
  1292. "kind": "function"
  1293. }
  1294. ]
  1295. }
  1296. ]
  1297. },
  1298. {
  1299. "ruleId": "C6255",
  1300. "message": {
  1301. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  1302. },
  1303. "locations": [
  1304. {
  1305. "physicalLocation": {
  1306. "artifactLocation": {
  1307. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1308. },
  1309. "region": {
  1310. "startLine": 1173,
  1311. "startColumn": 39,
  1312. "endLine": 1173,
  1313. "endColumn": 39
  1314. }
  1315. },
  1316. "logicalLocations": [
  1317. {
  1318. "decoratedName": "ZBarcode_Encode_Segs",
  1319. "kind": "function"
  1320. }
  1321. ]
  1322. }
  1323. ]
  1324. },
  1325. {
  1326. "ruleId": "C6255",
  1327. "message": {
  1328. "text": "_alloca kennzeichnet Fehler durch Auslösen einer Stapelüberlaufausnahme. Verwenden Sie stattdessen _malloca."
  1329. },
  1330. "locations": [
  1331. {
  1332. "physicalLocation": {
  1333. "artifactLocation": {
  1334. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  1335. },
  1336. "region": {
  1337. "startLine": 1217,
  1338. "startColumn": 60,
  1339. "endLine": 1217,
  1340. "endColumn": 60
  1341. }
  1342. },
  1343. "logicalLocations": [
  1344. {
  1345. "decoratedName": "ZBarcode_Encode_Segs",
  1346. "kind": "function"
  1347. }
  1348. ]
  1349. }
  1350. ]
  1351. }
  1352. ],
  1353. "tool": {
  1354. "driver": {
  1355. "name": "PREfast",
  1356. "fullName": "PREfast Code Analysis",
  1357. "version": "14.29.30159.0",
  1358. "informationUri": "https://aka.ms/cpp/ca"
  1359. }
  1360. },
  1361. "invocations": [
  1362. {
  1363. "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_86be0c0aast -typedil -f ..\\..\\thirdparty\\zint\\backend\\library.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\\library.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",
  1364. "executionSuccessful": true
  1365. }
  1366. ],
  1367. "artifacts": [
  1368. {
  1369. "location": {
  1370. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/emf.c"
  1371. },
  1372. "roles": [
  1373. "analysisTarget",
  1374. "resultFile"
  1375. ],
  1376. "hashes": {
  1377. "md5": "6d535616aa38ecd3bd9157b4f1ba2f1e"
  1378. }
  1379. },
  1380. {
  1381. "location": {
  1382. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/common.h"
  1383. },
  1384. "hashes": {
  1385. "md5": "4204dbbc879b836e2d98ba7e947037ca"
  1386. }
  1387. },
  1388. {
  1389. "location": {
  1390. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/zint.h"
  1391. },
  1392. "hashes": {
  1393. "md5": "52ace3d3df4d440075f3460c1759b827"
  1394. }
  1395. },
  1396. {
  1397. "location": {
  1398. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/zintconfig.h"
  1399. },
  1400. "hashes": {
  1401. "md5": "c79a63ec9936f235fa16610640c6ddb4"
  1402. }
  1403. },
  1404. {
  1405. "location": {
  1406. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/filemem.h"
  1407. },
  1408. "hashes": {
  1409. "md5": "6af75d55db05fdefb3fdc0db6e6fb1a2"
  1410. }
  1411. },
  1412. {
  1413. "location": {
  1414. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/output.h"
  1415. },
  1416. "hashes": {
  1417. "md5": "15c62089655f396890f0d781baffdfef"
  1418. }
  1419. },
  1420. {
  1421. "location": {
  1422. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/emf.h"
  1423. },
  1424. "hashes": {
  1425. "md5": "998da547ba5b99b51f7a0b0f1f0a47c9"
  1426. }
  1427. },
  1428. {
  1429. "location": {
  1430. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/eci.c"
  1431. },
  1432. "roles": [
  1433. "analysisTarget",
  1434. "resultFile"
  1435. ],
  1436. "hashes": {
  1437. "md5": "e9678c6c10d7b5d416c03c8858c45a9b"
  1438. }
  1439. },
  1440. {
  1441. "location": {
  1442. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/eci.h"
  1443. },
  1444. "hashes": {
  1445. "md5": "f2f0f7c011dc0a0d7c510f2fdbc70c6c"
  1446. }
  1447. },
  1448. {
  1449. "location": {
  1450. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/eci_sb.h"
  1451. },
  1452. "hashes": {
  1453. "md5": "26ea335e85f642fb5339f3fc239e686a"
  1454. }
  1455. },
  1456. {
  1457. "location": {
  1458. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/big5.h"
  1459. },
  1460. "hashes": {
  1461. "md5": "e0c8c14a7b09e5675d12982e3cb39a32"
  1462. }
  1463. },
  1464. {
  1465. "location": {
  1466. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gb18030.h"
  1467. },
  1468. "hashes": {
  1469. "md5": "39f30b9e58753bc6f287fcecb6cc0cfa"
  1470. }
  1471. },
  1472. {
  1473. "location": {
  1474. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gb2312.h"
  1475. },
  1476. "hashes": {
  1477. "md5": "6fce7e1ba34bc0c1375189bd99e55a72"
  1478. }
  1479. },
  1480. {
  1481. "location": {
  1482. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gbk.h"
  1483. },
  1484. "hashes": {
  1485. "md5": "3d5503c61be97727c804403048bd4233"
  1486. }
  1487. },
  1488. {
  1489. "location": {
  1490. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/ksx1001.h"
  1491. },
  1492. "hashes": {
  1493. "md5": "55d60b433b9a99e93afe5a233085f810"
  1494. }
  1495. },
  1496. {
  1497. "location": {
  1498. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/sjis.h"
  1499. },
  1500. "hashes": {
  1501. "md5": "72248d7bc4d344332d8cac0034d817ee"
  1502. }
  1503. },
  1504. {
  1505. "location": {
  1506. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dxfilmedge.c"
  1507. },
  1508. "roles": [
  1509. "analysisTarget"
  1510. ],
  1511. "hashes": {
  1512. "md5": "f87df1bd444800d9edec38462b4cad23"
  1513. }
  1514. },
  1515. {
  1516. "location": {
  1517. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/dotcode.c"
  1518. },
  1519. "roles": [
  1520. "analysisTarget",
  1521. "resultFile"
  1522. ],
  1523. "hashes": {
  1524. "md5": "e3f523ef7dad9213e8e718188c429f89"
  1525. }
  1526. },
  1527. {
  1528. "location": {
  1529. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gs1.h"
  1530. },
  1531. "hashes": {
  1532. "md5": "d43346840a9524bd9b70a3ab634e2a1c"
  1533. }
  1534. },
  1535. {
  1536. "location": {
  1537. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/dmatrix.c"
  1538. },
  1539. "roles": [
  1540. "analysisTarget",
  1541. "resultFile"
  1542. ],
  1543. "hashes": {
  1544. "md5": "a941e5f609274d08ab76dc67c39f935b"
  1545. }
  1546. },
  1547. {
  1548. "location": {
  1549. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/reedsol.h"
  1550. },
  1551. "hashes": {
  1552. "md5": "689adb6be13e830305cac3006456111e"
  1553. }
  1554. },
  1555. {
  1556. "location": {
  1557. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dmatrix.h"
  1558. },
  1559. "hashes": {
  1560. "md5": "f85867e1c76fd4d6d302cbece71b590e"
  1561. }
  1562. },
  1563. {
  1564. "location": {
  1565. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dmatrix_trace.h"
  1566. },
  1567. "hashes": {
  1568. "md5": "89ffd7e33d004369193a5e51ebb714c5"
  1569. }
  1570. },
  1571. {
  1572. "location": {
  1573. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dllversion.c"
  1574. },
  1575. "roles": [
  1576. "analysisTarget"
  1577. ],
  1578. "hashes": {
  1579. "md5": "06d0a86da29c0fe0e1a6995db79b956d"
  1580. }
  1581. },
  1582. {
  1583. "location": {
  1584. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  1585. },
  1586. "roles": [
  1587. "analysisTarget",
  1588. "resultFile"
  1589. ],
  1590. "hashes": {
  1591. "md5": "68d22ba1cb0ccafcb1da0ba9fd50037f"
  1592. }
  1593. },
  1594. {
  1595. "location": {
  1596. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/pdf417.h"
  1597. },
  1598. "hashes": {
  1599. "md5": "b72ee8e321017130fed546f1b39c4486"
  1600. }
  1601. },
  1602. {
  1603. "location": {
  1604. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/general_field.h"
  1605. },
  1606. "hashes": {
  1607. "md5": "02523de2512651998303587be5f0a3e6"
  1608. }
  1609. },
  1610. {
  1611. "location": {
  1612. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/composite.h"
  1613. },
  1614. "hashes": {
  1615. "md5": "adfd98cf740d9430309d6a5ac6703d61"
  1616. }
  1617. },
  1618. {
  1619. "location": {
  1620. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/common.c"
  1621. },
  1622. "roles": [
  1623. "analysisTarget",
  1624. "resultFile"
  1625. ],
  1626. "hashes": {
  1627. "md5": "9b0c2ef9bd83407e387df4913d9cd035"
  1628. }
  1629. },
  1630. {
  1631. "location": {
  1632. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/code49.c"
  1633. },
  1634. "roles": [
  1635. "analysisTarget",
  1636. "resultFile"
  1637. ],
  1638. "hashes": {
  1639. "md5": "debd938b5de2e6dd43f48192398beb06"
  1640. }
  1641. },
  1642. {
  1643. "location": {
  1644. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/code49.h"
  1645. },
  1646. "hashes": {
  1647. "md5": "f6a892542846c700476501a1a4b34c24"
  1648. }
  1649. },
  1650. {
  1651. "location": {
  1652. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/code16k.c"
  1653. },
  1654. "roles": [
  1655. "analysisTarget"
  1656. ],
  1657. "hashes": {
  1658. "md5": "5d6c3fa6a17d3d7088772b2bb90f1dca"
  1659. }
  1660. },
  1661. {
  1662. "location": {
  1663. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/code128.h"
  1664. },
  1665. "hashes": {
  1666. "md5": "f161f78cfd77f4839fe93551d75409a3"
  1667. }
  1668. },
  1669. {
  1670. "location": {
  1671. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/code128.c"
  1672. },
  1673. "roles": [
  1674. "analysisTarget",
  1675. "resultFile"
  1676. ],
  1677. "hashes": {
  1678. "md5": "df9f2cc234a772fb5f2e382ffd4959f0"
  1679. }
  1680. },
  1681. {
  1682. "location": {
  1683. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/code1.c"
  1684. },
  1685. "roles": [
  1686. "analysisTarget",
  1687. "resultFile"
  1688. ],
  1689. "hashes": {
  1690. "md5": "95ff3143619dfeebe6e75b8f401667ca"
  1691. }
  1692. },
  1693. {
  1694. "location": {
  1695. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/code1.h"
  1696. },
  1697. "hashes": {
  1698. "md5": "a39892a0526184a130976f6e57599eaa"
  1699. }
  1700. },
  1701. {
  1702. "location": {
  1703. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/large.h"
  1704. },
  1705. "hashes": {
  1706. "md5": "f9d0bdd54b17e310d4e65fe4e747016c"
  1707. }
  1708. },
  1709. {
  1710. "location": {
  1711. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/code.c"
  1712. },
  1713. "roles": [
  1714. "analysisTarget",
  1715. "resultFile"
  1716. ],
  1717. "hashes": {
  1718. "md5": "d6d88ce7d50227925a3715b512b00628"
  1719. }
  1720. },
  1721. {
  1722. "location": {
  1723. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/channel_precalcs.h"
  1724. },
  1725. "hashes": {
  1726. "md5": "c04b4a9bdd4b6b12d2dd7e03d96988a5"
  1727. }
  1728. },
  1729. {
  1730. "location": {
  1731. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/codablock.c"
  1732. },
  1733. "roles": [
  1734. "analysisTarget",
  1735. "resultFile"
  1736. ],
  1737. "hashes": {
  1738. "md5": "3842daef00aef36153b6414b60e41a70"
  1739. }
  1740. },
  1741. {
  1742. "location": {
  1743. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/bmp.c"
  1744. },
  1745. "roles": [
  1746. "analysisTarget"
  1747. ],
  1748. "hashes": {
  1749. "md5": "5f38a12a2e9e788cb027c18cb2348bc1"
  1750. }
  1751. },
  1752. {
  1753. "location": {
  1754. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/bmp.h"
  1755. },
  1756. "hashes": {
  1757. "md5": "27562f96aed61cafab58574ecdb6aed0"
  1758. }
  1759. },
  1760. {
  1761. "location": {
  1762. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/bc412.c"
  1763. },
  1764. "roles": [
  1765. "analysisTarget"
  1766. ],
  1767. "hashes": {
  1768. "md5": "6bf4dadf809e24be300f3c93f2f6d0ae"
  1769. }
  1770. },
  1771. {
  1772. "location": {
  1773. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/aztec.c"
  1774. },
  1775. "roles": [
  1776. "analysisTarget",
  1777. "resultFile"
  1778. ],
  1779. "hashes": {
  1780. "md5": "79d23d274482d5af5bd446a54ce56408"
  1781. }
  1782. },
  1783. {
  1784. "location": {
  1785. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/aztec.h"
  1786. },
  1787. "hashes": {
  1788. "md5": "43e465c7a56b8d1f2a652532efb86e05"
  1789. }
  1790. },
  1791. {
  1792. "location": {
  1793. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/auspost.c"
  1794. },
  1795. "roles": [
  1796. "analysisTarget",
  1797. "resultFile"
  1798. ],
  1799. "hashes": {
  1800. "md5": "6b437d9fa374f38303bdd8a30a68f27e"
  1801. }
  1802. },
  1803. {
  1804. "location": {
  1805. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/2of5.c"
  1806. },
  1807. "roles": [
  1808. "analysisTarget",
  1809. "resultFile"
  1810. ],
  1811. "hashes": {
  1812. "md5": "b0ef91f80a4152b004e1fdf5b536adff"
  1813. }
  1814. },
  1815. {
  1816. "location": {
  1817. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci.c"
  1818. },
  1819. "roles": [
  1820. "analysisTarget"
  1821. ],
  1822. "hashes": {
  1823. "md5": "95307720f0ec03c5d38e2894b804c60e"
  1824. }
  1825. },
  1826. {
  1827. "location": {
  1828. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci.h"
  1829. },
  1830. "hashes": {
  1831. "md5": "da031c02c4d523fadc42cc72439f7a7e"
  1832. }
  1833. },
  1834. {
  1835. "location": {
  1836. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_common.h"
  1837. },
  1838. "hashes": {
  1839. "md5": "18da9dbfb9b275964a7d0032570b08ac"
  1840. }
  1841. },
  1842. {
  1843. "location": {
  1844. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_sb.h"
  1845. },
  1846. "hashes": {
  1847. "md5": "187a854bf25bbf498b2202e94c8b5ac0"
  1848. }
  1849. },
  1850. {
  1851. "location": {
  1852. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_big5.h"
  1853. },
  1854. "hashes": {
  1855. "md5": "8beffe91bc05a8346770de8438ccbb9e"
  1856. }
  1857. },
  1858. {
  1859. "location": {
  1860. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_gb18030.h"
  1861. },
  1862. "hashes": {
  1863. "md5": "8ee8a6a22b80db942eca616d9f30bb11"
  1864. }
  1865. },
  1866. {
  1867. "location": {
  1868. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_gb2312.h"
  1869. },
  1870. "hashes": {
  1871. "md5": "f5f6b8cea973b9c4234ead49a33584b8"
  1872. }
  1873. },
  1874. {
  1875. "location": {
  1876. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_gbk.h"
  1877. },
  1878. "hashes": {
  1879. "md5": "24d09e6b149d8e1077c8735d6787c95c"
  1880. }
  1881. },
  1882. {
  1883. "location": {
  1884. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_ksx1001.h"
  1885. },
  1886. "hashes": {
  1887. "md5": "f2e23d3f92470b9c9b1a21f67f1c0e54"
  1888. }
  1889. },
  1890. {
  1891. "location": {
  1892. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_sjis.h"
  1893. },
  1894. "hashes": {
  1895. "md5": "3e81259e77f703403a0196aa85925e43"
  1896. }
  1897. },
  1898. {
  1899. "location": {
  1900. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/qr.c"
  1901. },
  1902. "roles": [
  1903. "analysisTarget",
  1904. "resultFile"
  1905. ],
  1906. "hashes": {
  1907. "md5": "74500d6a61ec64542dd8fc7392a92e40"
  1908. }
  1909. },
  1910. {
  1911. "location": {
  1912. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/qr.h"
  1913. },
  1914. "hashes": {
  1915. "md5": "b1ac11efe17386fcd32685829f953b45"
  1916. }
  1917. },
  1918. {
  1919. "location": {
  1920. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/ps.c"
  1921. },
  1922. "roles": [
  1923. "analysisTarget",
  1924. "resultFile"
  1925. ],
  1926. "hashes": {
  1927. "md5": "ccb35287ba5ff21f9b084048874b5147"
  1928. }
  1929. },
  1930. {
  1931. "location": {
  1932. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/postal.c"
  1933. },
  1934. "roles": [
  1935. "analysisTarget",
  1936. "resultFile"
  1937. ],
  1938. "hashes": {
  1939. "md5": "4b08aec153fb77aa523481bc567f44ec"
  1940. }
  1941. },
  1942. {
  1943. "location": {
  1944. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/png.c"
  1945. },
  1946. "roles": [
  1947. "analysisTarget"
  1948. ],
  1949. "hashes": {
  1950. "md5": "d0818e12717a49154cd69b45bb6f93d0"
  1951. }
  1952. },
  1953. {
  1954. "location": {
  1955. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/plessey.c"
  1956. },
  1957. "roles": [
  1958. "analysisTarget",
  1959. "resultFile"
  1960. ],
  1961. "hashes": {
  1962. "md5": "9f182aa1244840540f3e2bb4241fbffd"
  1963. }
  1964. },
  1965. {
  1966. "location": {
  1967. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/pdf417.c"
  1968. },
  1969. "roles": [
  1970. "analysisTarget",
  1971. "resultFile"
  1972. ],
  1973. "hashes": {
  1974. "md5": "e3e0db57019a821084fa8336a2d8aaa4"
  1975. }
  1976. },
  1977. {
  1978. "location": {
  1979. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/pdf417_tabs.h"
  1980. },
  1981. "hashes": {
  1982. "md5": "ec7bc64f772b98c86208590028950eed"
  1983. }
  1984. },
  1985. {
  1986. "location": {
  1987. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/pdf417_trace.h"
  1988. },
  1989. "hashes": {
  1990. "md5": "81c44ed93e59c09f11302494ce507659"
  1991. }
  1992. },
  1993. {
  1994. "location": {
  1995. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/pcx.c"
  1996. },
  1997. "roles": [
  1998. "analysisTarget",
  1999. "resultFile"
  2000. ],
  2001. "hashes": {
  2002. "md5": "da5d3cd4d15f2803b3374ebb430bed3b"
  2003. }
  2004. },
  2005. {
  2006. "location": {
  2007. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/pcx.h"
  2008. },
  2009. "hashes": {
  2010. "md5": "91cbdeeb41b603a9c7eebc8ea87cc682"
  2011. }
  2012. },
  2013. {
  2014. "location": {
  2015. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/output.c"
  2016. },
  2017. "roles": [
  2018. "analysisTarget",
  2019. "resultFile"
  2020. ],
  2021. "hashes": {
  2022. "md5": "acabb14edf95a53e712f718133c9994c"
  2023. }
  2024. },
  2025. {
  2026. "location": {
  2027. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/medical.c"
  2028. },
  2029. "roles": [
  2030. "analysisTarget",
  2031. "resultFile"
  2032. ],
  2033. "hashes": {
  2034. "md5": "3cc3fd6c64c366ba9e0c8383132c4a4b"
  2035. }
  2036. },
  2037. {
  2038. "location": {
  2039. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2040. },
  2041. "roles": [
  2042. "analysisTarget",
  2043. "resultFile"
  2044. ],
  2045. "hashes": {
  2046. "md5": "b81ca5552a7f9bc5a4db7cb3bf5132d8"
  2047. }
  2048. },
  2049. {
  2050. "location": {
  2051. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/maxicode.h"
  2052. },
  2053. "hashes": {
  2054. "md5": "4366d9d6744597f62d15e9f4cb3cc7d5"
  2055. }
  2056. },
  2057. {
  2058. "location": {
  2059. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/mailmark.c"
  2060. },
  2061. "roles": [
  2062. "analysisTarget"
  2063. ],
  2064. "hashes": {
  2065. "md5": "24452fff44c550cbf1c2f8eee47c9345"
  2066. }
  2067. },
  2068. {
  2069. "location": {
  2070. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/library.c"
  2071. },
  2072. "roles": [
  2073. "analysisTarget",
  2074. "resultFile"
  2075. ],
  2076. "hashes": {
  2077. "md5": "f10be747b1f47ab8af1cdf51a36a4a98"
  2078. }
  2079. },
  2080. {
  2081. "location": {
  2082. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/zfiletypes.h"
  2083. },
  2084. "hashes": {
  2085. "md5": "222de9149ffee98bd3afa0ab00ba80f2"
  2086. }
  2087. }
  2088. ]
  2089. }
  2090. ]
  2091. }