maxicode.nativecodeanalysis.sarif 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249
  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/maxicode.c"
  17. },
  18. "region": {
  19. "startLine": 292,
  20. "startColumn": 64,
  21. "endLine": 292,
  22. "endColumn": 64
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "mx_text_process_segs",
  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/maxicode.c"
  44. },
  45. "region": {
  46. "startLine": 294,
  47. "startColumn": 70,
  48. "endLine": 294,
  49. "endColumn": 70
  50. }
  51. },
  52. "logicalLocations": [
  53. {
  54. "decoratedName": "mx_text_process_segs",
  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/maxicode.c"
  71. },
  72. "region": {
  73. "startLine": 311,
  74. "startColumn": 43,
  75. "endLine": 311,
  76. "endColumn": 43
  77. }
  78. },
  79. "logicalLocations": [
  80. {
  81. "decoratedName": "mx_text_process_segs",
  82. "kind": "function"
  83. }
  84. ]
  85. }
  86. ]
  87. },
  88. {
  89. "ruleId": "C6385",
  90. "message": {
  91. "text": "Lesen ungültiger Daten von \"prior_code_sets\": die lesbare Größe beträgt \"sizeof((*prior_code_sets))*((segs_len+9))\" Byte, es können jedoch \"10\" Byte gelesen werden."
  92. },
  93. "locations": [
  94. {
  95. "physicalLocation": {
  96. "artifactLocation": {
  97. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  98. },
  99. "region": {
  100. "startLine": 350,
  101. "startColumn": 25,
  102. "endLine": 350,
  103. "endColumn": 58
  104. }
  105. },
  106. "logicalLocations": [
  107. {
  108. "decoratedName": "mx_text_process_segs",
  109. "kind": "function"
  110. }
  111. ]
  112. }
  113. ],
  114. "codeFlows": [
  115. {
  116. "threadFlows": [
  117. {
  118. "locations": [
  119. {
  120. "location": {
  121. "physicalLocation": {
  122. "artifactLocation": {
  123. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  124. },
  125. "region": {
  126. "startLine": 282,
  127. "startColumn": 9
  128. }
  129. }
  130. },
  131. "importance": "unimportant"
  132. },
  133. {
  134. "location": {
  135. "physicalLocation": {
  136. "artifactLocation": {
  137. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  138. },
  139. "region": {
  140. "startLine": 283,
  141. "startColumn": 10
  142. }
  143. }
  144. },
  145. "importance": "unimportant"
  146. },
  147. {
  148. "location": {
  149. "physicalLocation": {
  150. "artifactLocation": {
  151. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  152. },
  153. "region": {
  154. "startLine": 284,
  155. "startColumn": 10
  156. }
  157. }
  158. },
  159. "importance": "unimportant"
  160. },
  161. {
  162. "location": {
  163. "physicalLocation": {
  164. "artifactLocation": {
  165. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  166. },
  167. "region": {
  168. "startLine": 286,
  169. "startColumn": 9
  170. }
  171. }
  172. },
  173. "importance": "unimportant"
  174. },
  175. {
  176. "location": {
  177. "physicalLocation": {
  178. "artifactLocation": {
  179. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  180. },
  181. "region": {
  182. "startLine": 287,
  183. "startColumn": 15
  184. }
  185. }
  186. },
  187. "importance": "unimportant"
  188. },
  189. {
  190. "location": {
  191. "physicalLocation": {
  192. "artifactLocation": {
  193. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  194. },
  195. "region": {
  196. "startLine": 288,
  197. "startColumn": 9
  198. }
  199. }
  200. },
  201. "importance": "unimportant"
  202. },
  203. {
  204. "location": {
  205. "physicalLocation": {
  206. "artifactLocation": {
  207. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  208. },
  209. "region": {
  210. "startLine": 288,
  211. "startColumn": 13
  212. }
  213. }
  214. },
  215. "importance": "unimportant"
  216. },
  217. {
  218. "location": {
  219. "physicalLocation": {
  220. "artifactLocation": {
  221. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  222. },
  223. "region": {
  224. "startLine": 291,
  225. "startColumn": 15
  226. }
  227. }
  228. },
  229. "importance": "unimportant"
  230. },
  231. {
  232. "location": {
  233. "physicalLocation": {
  234. "artifactLocation": {
  235. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  236. },
  237. "region": {
  238. "startLine": 292,
  239. "startColumn": 10
  240. }
  241. },
  242. "message": {
  243. "text": "\"prior_code_sets\" ist ein Array mit 0 Byte."
  244. }
  245. },
  246. "kinds": [
  247. "declaration"
  248. ],
  249. "importance": "essential"
  250. },
  251. {
  252. "location": {
  253. "physicalLocation": {
  254. "artifactLocation": {
  255. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  256. },
  257. "region": {
  258. "startLine": 293,
  259. "startColumn": 19
  260. }
  261. }
  262. },
  263. "importance": "unimportant"
  264. },
  265. {
  266. "location": {
  267. "physicalLocation": {
  268. "artifactLocation": {
  269. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  270. },
  271. "region": {
  272. "startLine": 296,
  273. "startColumn": 9
  274. }
  275. }
  276. },
  277. "importance": "unimportant"
  278. },
  279. {
  280. "location": {
  281. "physicalLocation": {
  282. "artifactLocation": {
  283. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  284. },
  285. "region": {
  286. "startLine": 297,
  287. "startColumn": 9
  288. }
  289. }
  290. },
  291. "importance": "unimportant"
  292. },
  293. {
  294. "location": {
  295. "physicalLocation": {
  296. "artifactLocation": {
  297. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  298. },
  299. "region": {
  300. "startLine": 299,
  301. "startColumn": 9
  302. }
  303. }
  304. },
  305. "importance": "unimportant"
  306. },
  307. {
  308. "location": {
  309. "physicalLocation": {
  310. "artifactLocation": {
  311. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  312. },
  313. "region": {
  314. "startLine": 300,
  315. "startColumn": 9
  316. }
  317. }
  318. },
  319. "importance": "unimportant"
  320. },
  321. {
  322. "location": {
  323. "physicalLocation": {
  324. "artifactLocation": {
  325. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  326. },
  327. "region": {
  328. "startLine": 301,
  329. "startColumn": 9
  330. }
  331. }
  332. },
  333. "importance": "unimportant"
  334. },
  335. {
  336. "location": {
  337. "physicalLocation": {
  338. "artifactLocation": {
  339. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  340. },
  341. "region": {
  342. "startLine": 303,
  343. "startColumn": 20
  344. }
  345. }
  346. },
  347. "importance": "unimportant"
  348. },
  349. {
  350. "location": {
  351. "physicalLocation": {
  352. "artifactLocation": {
  353. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  354. },
  355. "region": {
  356. "startLine": 304,
  357. "startColumn": 9
  358. }
  359. }
  360. },
  361. "importance": "unimportant"
  362. },
  363. {
  364. "location": {
  365. "physicalLocation": {
  366. "artifactLocation": {
  367. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  368. },
  369. "region": {
  370. "startLine": 306,
  371. "startColumn": 9
  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/maxicode.c"
  382. },
  383. "region": {
  384. "startLine": 307,
  385. "startColumn": 9
  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/maxicode.c"
  396. },
  397. "region": {
  398. "startLine": 308,
  399. "startColumn": 9
  400. }
  401. }
  402. },
  403. "importance": "unimportant"
  404. },
  405. {
  406. "location": {
  407. "physicalLocation": {
  408. "artifactLocation": {
  409. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  410. },
  411. "region": {
  412. "startLine": 308,
  413. "startColumn": 12
  414. }
  415. }
  416. },
  417. "importance": "unimportant"
  418. },
  419. {
  420. "location": {
  421. "physicalLocation": {
  422. "artifactLocation": {
  423. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  424. },
  425. "region": {
  426. "startLine": 310,
  427. "startColumn": 16
  428. }
  429. },
  430. "message": {
  431. "text": "Diese Verzweigung überspringen (Annahme: \"scm_vv!=-1\" ist false)"
  432. }
  433. },
  434. "kinds": [
  435. "branch"
  436. ],
  437. "importance": "important"
  438. },
  439. {
  440. "location": {
  441. "physicalLocation": {
  442. "artifactLocation": {
  443. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  444. },
  445. "region": {
  446. "startLine": 318,
  447. "startColumn": 49
  448. }
  449. },
  450. "message": {
  451. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  452. }
  453. },
  454. "kinds": [
  455. "branch"
  456. ],
  457. "importance": "important"
  458. },
  459. {
  460. "location": {
  461. "physicalLocation": {
  462. "artifactLocation": {
  463. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  464. },
  465. "region": {
  466. "startLine": 323,
  467. "startColumn": 9
  468. }
  469. }
  470. },
  471. "importance": "unimportant"
  472. },
  473. {
  474. "location": {
  475. "physicalLocation": {
  476. "artifactLocation": {
  477. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  478. },
  479. "region": {
  480. "startLine": 329,
  481. "startColumn": 8
  482. }
  483. }
  484. },
  485. "importance": "unimportant"
  486. },
  487. {
  488. "location": {
  489. "physicalLocation": {
  490. "artifactLocation": {
  491. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  492. },
  493. "region": {
  494. "startLine": 330,
  495. "startColumn": 14
  496. }
  497. }
  498. },
  499. "importance": "unimportant"
  500. },
  501. {
  502. "location": {
  503. "physicalLocation": {
  504. "artifactLocation": {
  505. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  506. },
  507. "region": {
  508. "startLine": 330,
  509. "startColumn": 23
  510. }
  511. },
  512. "message": {
  513. "text": "In diese Schleife eintreten (Annahme: \"seg<seg_count\")"
  514. }
  515. },
  516. "kinds": [
  517. "branch"
  518. ],
  519. "importance": "important"
  520. },
  521. {
  522. "location": {
  523. "physicalLocation": {
  524. "artifactLocation": {
  525. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  526. },
  527. "region": {
  528. "startLine": 332,
  529. "startColumn": 19
  530. }
  531. }
  532. },
  533. "importance": "unimportant"
  534. },
  535. {
  536. "location": {
  537. "physicalLocation": {
  538. "artifactLocation": {
  539. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  540. },
  541. "region": {
  542. "startLine": 333,
  543. "startColumn": 36
  544. }
  545. }
  546. },
  547. "importance": "unimportant"
  548. },
  549. {
  550. "location": {
  551. "physicalLocation": {
  552. "artifactLocation": {
  553. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  554. },
  555. "region": {
  556. "startLine": 334,
  557. "startColumn": 19
  558. }
  559. }
  560. },
  561. "importance": "unimportant"
  562. },
  563. {
  564. "location": {
  565. "physicalLocation": {
  566. "artifactLocation": {
  567. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  568. },
  569. "region": {
  570. "startLine": 335,
  571. "startColumn": 19
  572. }
  573. }
  574. },
  575. "importance": "unimportant"
  576. },
  577. {
  578. "location": {
  579. "physicalLocation": {
  580. "artifactLocation": {
  581. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  582. },
  583. "region": {
  584. "startLine": 336,
  585. "startColumn": 13
  586. }
  587. },
  588. "message": {
  589. "text": "Diese Verzweigung überspringen (Annahme: \"eci_len\" ist false)"
  590. }
  591. },
  592. "kinds": [
  593. "branch"
  594. ],
  595. "importance": "important"
  596. },
  597. {
  598. "location": {
  599. "physicalLocation": {
  600. "artifactLocation": {
  601. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  602. },
  603. "region": {
  604. "startLine": 344,
  605. "startColumn": 16
  606. }
  607. }
  608. },
  609. "importance": "unimportant"
  610. },
  611. {
  612. "location": {
  613. "physicalLocation": {
  614. "artifactLocation": {
  615. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  616. },
  617. "region": {
  618. "startLine": 344,
  619. "startColumn": 23
  620. }
  621. },
  622. "message": {
  623. "text": "In diese Schleife eintreten (Annahme: \"i<length\")"
  624. }
  625. },
  626. "kinds": [
  627. "branch"
  628. ],
  629. "importance": "important"
  630. },
  631. {
  632. "location": {
  633. "physicalLocation": {
  634. "artifactLocation": {
  635. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  636. },
  637. "region": {
  638. "startLine": 345,
  639. "startColumn": 33
  640. }
  641. }
  642. },
  643. "importance": "unimportant"
  644. },
  645. {
  646. "location": {
  647. "physicalLocation": {
  648. "artifactLocation": {
  649. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  650. },
  651. "region": {
  652. "startLine": 346,
  653. "startColumn": 23
  654. }
  655. }
  656. },
  657. "importance": "unimportant"
  658. },
  659. {
  660. "location": {
  661. "physicalLocation": {
  662. "artifactLocation": {
  663. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  664. },
  665. "region": {
  666. "startLine": 349,
  667. "startColumn": 34
  668. }
  669. }
  670. },
  671. "importance": "unimportant"
  672. },
  673. {
  674. "location": {
  675. "physicalLocation": {
  676. "artifactLocation": {
  677. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  678. },
  679. "region": {
  680. "startLine": 350,
  681. "startColumn": 25
  682. }
  683. }
  684. },
  685. "importance": "unimportant"
  686. },
  687. {
  688. "location": {
  689. "physicalLocation": {
  690. "artifactLocation": {
  691. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  692. },
  693. "region": {
  694. "startLine": 351,
  695. "startColumn": 25
  696. }
  697. }
  698. },
  699. "importance": "unimportant"
  700. },
  701. {
  702. "location": {
  703. "physicalLocation": {
  704. "artifactLocation": {
  705. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  706. },
  707. "region": {
  708. "startLine": 352,
  709. "startColumn": 25
  710. }
  711. }
  712. },
  713. "importance": "unimportant"
  714. },
  715. {
  716. "location": {
  717. "physicalLocation": {
  718. "artifactLocation": {
  719. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  720. },
  721. "region": {
  722. "startLine": 355,
  723. "startColumn": 20
  724. }
  725. }
  726. },
  727. "importance": "unimportant"
  728. },
  729. {
  730. "location": {
  731. "physicalLocation": {
  732. "artifactLocation": {
  733. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  734. },
  735. "region": {
  736. "startLine": 356,
  737. "startColumn": 19
  738. }
  739. }
  740. },
  741. "importance": "unimportant"
  742. },
  743. {
  744. "location": {
  745. "physicalLocation": {
  746. "artifactLocation": {
  747. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  748. },
  749. "region": {
  750. "startLine": 359,
  751. "startColumn": 24
  752. }
  753. }
  754. },
  755. "importance": "unimportant"
  756. },
  757. {
  758. "location": {
  759. "physicalLocation": {
  760. "artifactLocation": {
  761. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  762. },
  763. "region": {
  764. "startLine": 359,
  765. "startColumn": 35
  766. }
  767. }
  768. },
  769. "importance": "unimportant"
  770. },
  771. {
  772. "location": {
  773. "physicalLocation": {
  774. "artifactLocation": {
  775. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  776. },
  777. "region": {
  778. "startLine": 360,
  779. "startColumn": 36
  780. }
  781. }
  782. },
  783. "importance": "unimportant"
  784. },
  785. {
  786. "location": {
  787. "physicalLocation": {
  788. "artifactLocation": {
  789. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  790. },
  791. "region": {
  792. "startLine": 359,
  793. "startColumn": 53
  794. }
  795. }
  796. },
  797. "importance": "unimportant"
  798. },
  799. {
  800. "location": {
  801. "physicalLocation": {
  802. "artifactLocation": {
  803. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  804. },
  805. "region": {
  806. "startLine": 359,
  807. "startColumn": 35
  808. }
  809. }
  810. },
  811. "importance": "unimportant"
  812. },
  813. {
  814. "location": {
  815. "physicalLocation": {
  816. "artifactLocation": {
  817. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  818. },
  819. "region": {
  820. "startLine": 360,
  821. "startColumn": 36
  822. }
  823. }
  824. },
  825. "importance": "unimportant"
  826. },
  827. {
  828. "location": {
  829. "physicalLocation": {
  830. "artifactLocation": {
  831. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  832. },
  833. "region": {
  834. "startLine": 359,
  835. "startColumn": 53
  836. }
  837. }
  838. },
  839. "importance": "unimportant"
  840. },
  841. {
  842. "location": {
  843. "physicalLocation": {
  844. "artifactLocation": {
  845. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  846. },
  847. "region": {
  848. "startLine": 359,
  849. "startColumn": 35
  850. }
  851. }
  852. },
  853. "importance": "unimportant"
  854. },
  855. {
  856. "location": {
  857. "physicalLocation": {
  858. "artifactLocation": {
  859. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  860. },
  861. "region": {
  862. "startLine": 363,
  863. "startColumn": 24
  864. }
  865. }
  866. },
  867. "importance": "unimportant"
  868. },
  869. {
  870. "location": {
  871. "physicalLocation": {
  872. "artifactLocation": {
  873. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  874. },
  875. "region": {
  876. "startLine": 363,
  877. "startColumn": 35
  878. }
  879. }
  880. },
  881. "importance": "unimportant"
  882. },
  883. {
  884. "location": {
  885. "physicalLocation": {
  886. "artifactLocation": {
  887. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  888. },
  889. "region": {
  890. "startLine": 364,
  891. "startColumn": 36
  892. }
  893. }
  894. },
  895. "importance": "unimportant"
  896. },
  897. {
  898. "location": {
  899. "physicalLocation": {
  900. "artifactLocation": {
  901. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  902. },
  903. "region": {
  904. "startLine": 363,
  905. "startColumn": 53
  906. }
  907. }
  908. },
  909. "importance": "unimportant"
  910. },
  911. {
  912. "location": {
  913. "physicalLocation": {
  914. "artifactLocation": {
  915. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  916. },
  917. "region": {
  918. "startLine": 363,
  919. "startColumn": 35
  920. }
  921. }
  922. },
  923. "importance": "unimportant"
  924. },
  925. {
  926. "location": {
  927. "physicalLocation": {
  928. "artifactLocation": {
  929. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  930. },
  931. "region": {
  932. "startLine": 364,
  933. "startColumn": 36
  934. }
  935. }
  936. },
  937. "importance": "unimportant"
  938. },
  939. {
  940. "location": {
  941. "physicalLocation": {
  942. "artifactLocation": {
  943. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  944. },
  945. "region": {
  946. "startLine": 363,
  947. "startColumn": 53
  948. }
  949. }
  950. },
  951. "importance": "unimportant"
  952. },
  953. {
  954. "location": {
  955. "physicalLocation": {
  956. "artifactLocation": {
  957. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  958. },
  959. "region": {
  960. "startLine": 363,
  961. "startColumn": 35
  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/maxicode.c"
  972. },
  973. "region": {
  974. "startLine": 344,
  975. "startColumn": 34
  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/maxicode.c"
  986. },
  987. "region": {
  988. "startLine": 344,
  989. "startColumn": 23
  990. }
  991. },
  992. "message": {
  993. "text": "Diese Schleife fortsetzen (Annahme: \"i<length\")"
  994. }
  995. },
  996. "kinds": [
  997. "branch"
  998. ],
  999. "importance": "important"
  1000. },
  1001. {
  1002. "location": {
  1003. "physicalLocation": {
  1004. "artifactLocation": {
  1005. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1006. },
  1007. "region": {
  1008. "startLine": 345,
  1009. "startColumn": 33
  1010. }
  1011. }
  1012. },
  1013. "importance": "unimportant"
  1014. },
  1015. {
  1016. "location": {
  1017. "physicalLocation": {
  1018. "artifactLocation": {
  1019. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1020. },
  1021. "region": {
  1022. "startLine": 346,
  1023. "startColumn": 23
  1024. }
  1025. },
  1026. "message": {
  1027. "text": "\"si_i\" kann gleich 1 sein."
  1028. }
  1029. },
  1030. "kinds": [
  1031. "declaration"
  1032. ],
  1033. "importance": "essential"
  1034. },
  1035. {
  1036. "location": {
  1037. "physicalLocation": {
  1038. "artifactLocation": {
  1039. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1040. },
  1041. "region": {
  1042. "startLine": 349,
  1043. "startColumn": 34
  1044. }
  1045. }
  1046. },
  1047. "importance": "unimportant"
  1048. },
  1049. {
  1050. "location": {
  1051. "physicalLocation": {
  1052. "artifactLocation": {
  1053. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1054. },
  1055. "region": {
  1056. "startLine": 350,
  1057. "startColumn": 25
  1058. }
  1059. },
  1060. "message": {
  1061. "text": "Ungültiger Lesevorgang von \"prior_code_sets\" (außerhalb des lesbaren Bereichs)"
  1062. }
  1063. },
  1064. "kinds": [
  1065. "usage"
  1066. ],
  1067. "importance": "essential"
  1068. }
  1069. ]
  1070. }
  1071. ]
  1072. }
  1073. ]
  1074. },
  1075. {
  1076. "ruleId": "C6385",
  1077. "message": {
  1078. "text": "Lesen ungültiger Daten von \"path_ops\": die lesbare Größe beträgt \"sizeof((*path_ops))*((segs_len+9))\" Byte, es können jedoch \"10\" Byte gelesen werden."
  1079. },
  1080. "locations": [
  1081. {
  1082. "physicalLocation": {
  1083. "artifactLocation": {
  1084. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1085. },
  1086. "region": {
  1087. "startLine": 349,
  1088. "startColumn": 34,
  1089. "endLine": 349,
  1090. "endColumn": 53
  1091. }
  1092. },
  1093. "logicalLocations": [
  1094. {
  1095. "decoratedName": "mx_text_process_segs",
  1096. "kind": "function"
  1097. }
  1098. ]
  1099. }
  1100. ],
  1101. "codeFlows": [
  1102. {
  1103. "threadFlows": [
  1104. {
  1105. "locations": [
  1106. {
  1107. "location": {
  1108. "physicalLocation": {
  1109. "artifactLocation": {
  1110. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1111. },
  1112. "region": {
  1113. "startLine": 282,
  1114. "startColumn": 9
  1115. }
  1116. }
  1117. },
  1118. "importance": "unimportant"
  1119. },
  1120. {
  1121. "location": {
  1122. "physicalLocation": {
  1123. "artifactLocation": {
  1124. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1125. },
  1126. "region": {
  1127. "startLine": 283,
  1128. "startColumn": 10
  1129. }
  1130. }
  1131. },
  1132. "importance": "unimportant"
  1133. },
  1134. {
  1135. "location": {
  1136. "physicalLocation": {
  1137. "artifactLocation": {
  1138. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1139. },
  1140. "region": {
  1141. "startLine": 284,
  1142. "startColumn": 10
  1143. }
  1144. }
  1145. },
  1146. "importance": "unimportant"
  1147. },
  1148. {
  1149. "location": {
  1150. "physicalLocation": {
  1151. "artifactLocation": {
  1152. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1153. },
  1154. "region": {
  1155. "startLine": 286,
  1156. "startColumn": 9
  1157. }
  1158. }
  1159. },
  1160. "importance": "unimportant"
  1161. },
  1162. {
  1163. "location": {
  1164. "physicalLocation": {
  1165. "artifactLocation": {
  1166. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1167. },
  1168. "region": {
  1169. "startLine": 287,
  1170. "startColumn": 15
  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/maxicode.c"
  1181. },
  1182. "region": {
  1183. "startLine": 288,
  1184. "startColumn": 9
  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/maxicode.c"
  1195. },
  1196. "region": {
  1197. "startLine": 288,
  1198. "startColumn": 13
  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/maxicode.c"
  1209. },
  1210. "region": {
  1211. "startLine": 291,
  1212. "startColumn": 15
  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/maxicode.c"
  1223. },
  1224. "region": {
  1225. "startLine": 292,
  1226. "startColumn": 10
  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/maxicode.c"
  1237. },
  1238. "region": {
  1239. "startLine": 293,
  1240. "startColumn": 19
  1241. }
  1242. },
  1243. "message": {
  1244. "text": "\"path_ops\" ist ein Array mit 0 Byte."
  1245. }
  1246. },
  1247. "kinds": [
  1248. "declaration"
  1249. ],
  1250. "importance": "essential"
  1251. },
  1252. {
  1253. "location": {
  1254. "physicalLocation": {
  1255. "artifactLocation": {
  1256. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1257. },
  1258. "region": {
  1259. "startLine": 296,
  1260. "startColumn": 9
  1261. }
  1262. }
  1263. },
  1264. "importance": "unimportant"
  1265. },
  1266. {
  1267. "location": {
  1268. "physicalLocation": {
  1269. "artifactLocation": {
  1270. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1271. },
  1272. "region": {
  1273. "startLine": 297,
  1274. "startColumn": 9
  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/maxicode.c"
  1285. },
  1286. "region": {
  1287. "startLine": 299,
  1288. "startColumn": 9
  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/maxicode.c"
  1299. },
  1300. "region": {
  1301. "startLine": 300,
  1302. "startColumn": 9
  1303. }
  1304. }
  1305. },
  1306. "importance": "unimportant"
  1307. },
  1308. {
  1309. "location": {
  1310. "physicalLocation": {
  1311. "artifactLocation": {
  1312. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1313. },
  1314. "region": {
  1315. "startLine": 301,
  1316. "startColumn": 9
  1317. }
  1318. }
  1319. },
  1320. "importance": "unimportant"
  1321. },
  1322. {
  1323. "location": {
  1324. "physicalLocation": {
  1325. "artifactLocation": {
  1326. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1327. },
  1328. "region": {
  1329. "startLine": 303,
  1330. "startColumn": 20
  1331. }
  1332. }
  1333. },
  1334. "importance": "unimportant"
  1335. },
  1336. {
  1337. "location": {
  1338. "physicalLocation": {
  1339. "artifactLocation": {
  1340. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1341. },
  1342. "region": {
  1343. "startLine": 304,
  1344. "startColumn": 9
  1345. }
  1346. }
  1347. },
  1348. "importance": "unimportant"
  1349. },
  1350. {
  1351. "location": {
  1352. "physicalLocation": {
  1353. "artifactLocation": {
  1354. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1355. },
  1356. "region": {
  1357. "startLine": 306,
  1358. "startColumn": 9
  1359. }
  1360. }
  1361. },
  1362. "importance": "unimportant"
  1363. },
  1364. {
  1365. "location": {
  1366. "physicalLocation": {
  1367. "artifactLocation": {
  1368. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1369. },
  1370. "region": {
  1371. "startLine": 307,
  1372. "startColumn": 9
  1373. }
  1374. }
  1375. },
  1376. "importance": "unimportant"
  1377. },
  1378. {
  1379. "location": {
  1380. "physicalLocation": {
  1381. "artifactLocation": {
  1382. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1383. },
  1384. "region": {
  1385. "startLine": 308,
  1386. "startColumn": 9
  1387. }
  1388. }
  1389. },
  1390. "importance": "unimportant"
  1391. },
  1392. {
  1393. "location": {
  1394. "physicalLocation": {
  1395. "artifactLocation": {
  1396. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1397. },
  1398. "region": {
  1399. "startLine": 308,
  1400. "startColumn": 12
  1401. }
  1402. }
  1403. },
  1404. "importance": "unimportant"
  1405. },
  1406. {
  1407. "location": {
  1408. "physicalLocation": {
  1409. "artifactLocation": {
  1410. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1411. },
  1412. "region": {
  1413. "startLine": 310,
  1414. "startColumn": 16
  1415. }
  1416. },
  1417. "message": {
  1418. "text": "Diese Verzweigung überspringen (Annahme: \"scm_vv!=-1\" ist false)"
  1419. }
  1420. },
  1421. "kinds": [
  1422. "branch"
  1423. ],
  1424. "importance": "important"
  1425. },
  1426. {
  1427. "location": {
  1428. "physicalLocation": {
  1429. "artifactLocation": {
  1430. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1431. },
  1432. "region": {
  1433. "startLine": 318,
  1434. "startColumn": 49
  1435. }
  1436. },
  1437. "message": {
  1438. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  1439. }
  1440. },
  1441. "kinds": [
  1442. "branch"
  1443. ],
  1444. "importance": "important"
  1445. },
  1446. {
  1447. "location": {
  1448. "physicalLocation": {
  1449. "artifactLocation": {
  1450. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1451. },
  1452. "region": {
  1453. "startLine": 323,
  1454. "startColumn": 9
  1455. }
  1456. }
  1457. },
  1458. "importance": "unimportant"
  1459. },
  1460. {
  1461. "location": {
  1462. "physicalLocation": {
  1463. "artifactLocation": {
  1464. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1465. },
  1466. "region": {
  1467. "startLine": 329,
  1468. "startColumn": 8
  1469. }
  1470. }
  1471. },
  1472. "importance": "unimportant"
  1473. },
  1474. {
  1475. "location": {
  1476. "physicalLocation": {
  1477. "artifactLocation": {
  1478. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1479. },
  1480. "region": {
  1481. "startLine": 330,
  1482. "startColumn": 14
  1483. }
  1484. }
  1485. },
  1486. "importance": "unimportant"
  1487. },
  1488. {
  1489. "location": {
  1490. "physicalLocation": {
  1491. "artifactLocation": {
  1492. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1493. },
  1494. "region": {
  1495. "startLine": 330,
  1496. "startColumn": 23
  1497. }
  1498. },
  1499. "message": {
  1500. "text": "In diese Schleife eintreten (Annahme: \"seg<seg_count\")"
  1501. }
  1502. },
  1503. "kinds": [
  1504. "branch"
  1505. ],
  1506. "importance": "important"
  1507. },
  1508. {
  1509. "location": {
  1510. "physicalLocation": {
  1511. "artifactLocation": {
  1512. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1513. },
  1514. "region": {
  1515. "startLine": 332,
  1516. "startColumn": 19
  1517. }
  1518. }
  1519. },
  1520. "importance": "unimportant"
  1521. },
  1522. {
  1523. "location": {
  1524. "physicalLocation": {
  1525. "artifactLocation": {
  1526. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1527. },
  1528. "region": {
  1529. "startLine": 333,
  1530. "startColumn": 36
  1531. }
  1532. }
  1533. },
  1534. "importance": "unimportant"
  1535. },
  1536. {
  1537. "location": {
  1538. "physicalLocation": {
  1539. "artifactLocation": {
  1540. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1541. },
  1542. "region": {
  1543. "startLine": 334,
  1544. "startColumn": 19
  1545. }
  1546. }
  1547. },
  1548. "importance": "unimportant"
  1549. },
  1550. {
  1551. "location": {
  1552. "physicalLocation": {
  1553. "artifactLocation": {
  1554. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1555. },
  1556. "region": {
  1557. "startLine": 335,
  1558. "startColumn": 19
  1559. }
  1560. }
  1561. },
  1562. "importance": "unimportant"
  1563. },
  1564. {
  1565. "location": {
  1566. "physicalLocation": {
  1567. "artifactLocation": {
  1568. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1569. },
  1570. "region": {
  1571. "startLine": 336,
  1572. "startColumn": 13
  1573. }
  1574. },
  1575. "message": {
  1576. "text": "Diese Verzweigung überspringen (Annahme: \"eci_len\" ist false)"
  1577. }
  1578. },
  1579. "kinds": [
  1580. "branch"
  1581. ],
  1582. "importance": "important"
  1583. },
  1584. {
  1585. "location": {
  1586. "physicalLocation": {
  1587. "artifactLocation": {
  1588. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1589. },
  1590. "region": {
  1591. "startLine": 344,
  1592. "startColumn": 16
  1593. }
  1594. }
  1595. },
  1596. "importance": "unimportant"
  1597. },
  1598. {
  1599. "location": {
  1600. "physicalLocation": {
  1601. "artifactLocation": {
  1602. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1603. },
  1604. "region": {
  1605. "startLine": 344,
  1606. "startColumn": 23
  1607. }
  1608. },
  1609. "message": {
  1610. "text": "In diese Schleife eintreten (Annahme: \"i<length\")"
  1611. }
  1612. },
  1613. "kinds": [
  1614. "branch"
  1615. ],
  1616. "importance": "important"
  1617. },
  1618. {
  1619. "location": {
  1620. "physicalLocation": {
  1621. "artifactLocation": {
  1622. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1623. },
  1624. "region": {
  1625. "startLine": 345,
  1626. "startColumn": 33
  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/maxicode.c"
  1637. },
  1638. "region": {
  1639. "startLine": 346,
  1640. "startColumn": 23
  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/maxicode.c"
  1651. },
  1652. "region": {
  1653. "startLine": 349,
  1654. "startColumn": 34
  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/maxicode.c"
  1665. },
  1666. "region": {
  1667. "startLine": 350,
  1668. "startColumn": 25
  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/maxicode.c"
  1679. },
  1680. "region": {
  1681. "startLine": 351,
  1682. "startColumn": 25
  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/maxicode.c"
  1693. },
  1694. "region": {
  1695. "startLine": 352,
  1696. "startColumn": 25
  1697. }
  1698. }
  1699. },
  1700. "importance": "unimportant"
  1701. },
  1702. {
  1703. "location": {
  1704. "physicalLocation": {
  1705. "artifactLocation": {
  1706. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1707. },
  1708. "region": {
  1709. "startLine": 355,
  1710. "startColumn": 20
  1711. }
  1712. }
  1713. },
  1714. "importance": "unimportant"
  1715. },
  1716. {
  1717. "location": {
  1718. "physicalLocation": {
  1719. "artifactLocation": {
  1720. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1721. },
  1722. "region": {
  1723. "startLine": 356,
  1724. "startColumn": 19
  1725. }
  1726. }
  1727. },
  1728. "importance": "unimportant"
  1729. },
  1730. {
  1731. "location": {
  1732. "physicalLocation": {
  1733. "artifactLocation": {
  1734. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1735. },
  1736. "region": {
  1737. "startLine": 359,
  1738. "startColumn": 24
  1739. }
  1740. }
  1741. },
  1742. "importance": "unimportant"
  1743. },
  1744. {
  1745. "location": {
  1746. "physicalLocation": {
  1747. "artifactLocation": {
  1748. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1749. },
  1750. "region": {
  1751. "startLine": 359,
  1752. "startColumn": 35
  1753. }
  1754. }
  1755. },
  1756. "importance": "unimportant"
  1757. },
  1758. {
  1759. "location": {
  1760. "physicalLocation": {
  1761. "artifactLocation": {
  1762. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1763. },
  1764. "region": {
  1765. "startLine": 360,
  1766. "startColumn": 36
  1767. }
  1768. }
  1769. },
  1770. "importance": "unimportant"
  1771. },
  1772. {
  1773. "location": {
  1774. "physicalLocation": {
  1775. "artifactLocation": {
  1776. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1777. },
  1778. "region": {
  1779. "startLine": 359,
  1780. "startColumn": 53
  1781. }
  1782. }
  1783. },
  1784. "importance": "unimportant"
  1785. },
  1786. {
  1787. "location": {
  1788. "physicalLocation": {
  1789. "artifactLocation": {
  1790. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1791. },
  1792. "region": {
  1793. "startLine": 359,
  1794. "startColumn": 35
  1795. }
  1796. }
  1797. },
  1798. "importance": "unimportant"
  1799. },
  1800. {
  1801. "location": {
  1802. "physicalLocation": {
  1803. "artifactLocation": {
  1804. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1805. },
  1806. "region": {
  1807. "startLine": 360,
  1808. "startColumn": 36
  1809. }
  1810. }
  1811. },
  1812. "importance": "unimportant"
  1813. },
  1814. {
  1815. "location": {
  1816. "physicalLocation": {
  1817. "artifactLocation": {
  1818. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1819. },
  1820. "region": {
  1821. "startLine": 359,
  1822. "startColumn": 53
  1823. }
  1824. }
  1825. },
  1826. "importance": "unimportant"
  1827. },
  1828. {
  1829. "location": {
  1830. "physicalLocation": {
  1831. "artifactLocation": {
  1832. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1833. },
  1834. "region": {
  1835. "startLine": 359,
  1836. "startColumn": 35
  1837. }
  1838. }
  1839. },
  1840. "importance": "unimportant"
  1841. },
  1842. {
  1843. "location": {
  1844. "physicalLocation": {
  1845. "artifactLocation": {
  1846. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1847. },
  1848. "region": {
  1849. "startLine": 363,
  1850. "startColumn": 24
  1851. }
  1852. }
  1853. },
  1854. "importance": "unimportant"
  1855. },
  1856. {
  1857. "location": {
  1858. "physicalLocation": {
  1859. "artifactLocation": {
  1860. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1861. },
  1862. "region": {
  1863. "startLine": 363,
  1864. "startColumn": 35
  1865. }
  1866. }
  1867. },
  1868. "importance": "unimportant"
  1869. },
  1870. {
  1871. "location": {
  1872. "physicalLocation": {
  1873. "artifactLocation": {
  1874. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1875. },
  1876. "region": {
  1877. "startLine": 364,
  1878. "startColumn": 36
  1879. }
  1880. }
  1881. },
  1882. "importance": "unimportant"
  1883. },
  1884. {
  1885. "location": {
  1886. "physicalLocation": {
  1887. "artifactLocation": {
  1888. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1889. },
  1890. "region": {
  1891. "startLine": 363,
  1892. "startColumn": 53
  1893. }
  1894. }
  1895. },
  1896. "importance": "unimportant"
  1897. },
  1898. {
  1899. "location": {
  1900. "physicalLocation": {
  1901. "artifactLocation": {
  1902. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1903. },
  1904. "region": {
  1905. "startLine": 363,
  1906. "startColumn": 35
  1907. }
  1908. }
  1909. },
  1910. "importance": "unimportant"
  1911. },
  1912. {
  1913. "location": {
  1914. "physicalLocation": {
  1915. "artifactLocation": {
  1916. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1917. },
  1918. "region": {
  1919. "startLine": 364,
  1920. "startColumn": 36
  1921. }
  1922. }
  1923. },
  1924. "importance": "unimportant"
  1925. },
  1926. {
  1927. "location": {
  1928. "physicalLocation": {
  1929. "artifactLocation": {
  1930. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1931. },
  1932. "region": {
  1933. "startLine": 363,
  1934. "startColumn": 53
  1935. }
  1936. }
  1937. },
  1938. "importance": "unimportant"
  1939. },
  1940. {
  1941. "location": {
  1942. "physicalLocation": {
  1943. "artifactLocation": {
  1944. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1945. },
  1946. "region": {
  1947. "startLine": 363,
  1948. "startColumn": 35
  1949. }
  1950. }
  1951. },
  1952. "importance": "unimportant"
  1953. },
  1954. {
  1955. "location": {
  1956. "physicalLocation": {
  1957. "artifactLocation": {
  1958. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1959. },
  1960. "region": {
  1961. "startLine": 344,
  1962. "startColumn": 34
  1963. }
  1964. }
  1965. },
  1966. "importance": "unimportant"
  1967. },
  1968. {
  1969. "location": {
  1970. "physicalLocation": {
  1971. "artifactLocation": {
  1972. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1973. },
  1974. "region": {
  1975. "startLine": 344,
  1976. "startColumn": 23
  1977. }
  1978. },
  1979. "message": {
  1980. "text": "Diese Schleife fortsetzen (Annahme: \"i<length\")"
  1981. }
  1982. },
  1983. "kinds": [
  1984. "branch"
  1985. ],
  1986. "importance": "important"
  1987. },
  1988. {
  1989. "location": {
  1990. "physicalLocation": {
  1991. "artifactLocation": {
  1992. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  1993. },
  1994. "region": {
  1995. "startLine": 345,
  1996. "startColumn": 33
  1997. }
  1998. }
  1999. },
  2000. "importance": "unimportant"
  2001. },
  2002. {
  2003. "location": {
  2004. "physicalLocation": {
  2005. "artifactLocation": {
  2006. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2007. },
  2008. "region": {
  2009. "startLine": 346,
  2010. "startColumn": 23
  2011. }
  2012. },
  2013. "message": {
  2014. "text": "\"si_i\" kann gleich 1 sein."
  2015. }
  2016. },
  2017. "kinds": [
  2018. "declaration"
  2019. ],
  2020. "importance": "essential"
  2021. },
  2022. {
  2023. "location": {
  2024. "physicalLocation": {
  2025. "artifactLocation": {
  2026. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2027. },
  2028. "region": {
  2029. "startLine": 349,
  2030. "startColumn": 34
  2031. }
  2032. },
  2033. "message": {
  2034. "text": "Ungültiger Lesevorgang von \"path_ops\" (außerhalb des lesbaren Bereichs)"
  2035. }
  2036. },
  2037. "kinds": [
  2038. "usage"
  2039. ],
  2040. "importance": "essential"
  2041. }
  2042. ]
  2043. }
  2044. ]
  2045. }
  2046. ]
  2047. },
  2048. {
  2049. "ruleId": "C6011",
  2050. "message": {
  2051. "text": "Dereferenzierender NULL-Zeiger \"best_length\". "
  2052. },
  2053. "locations": [
  2054. {
  2055. "physicalLocation": {
  2056. "artifactLocation": {
  2057. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2058. },
  2059. "region": {
  2060. "startLine": 373,
  2061. "startColumn": 19,
  2062. "endLine": 373,
  2063. "endColumn": 37
  2064. }
  2065. },
  2066. "logicalLocations": [
  2067. {
  2068. "decoratedName": "mx_text_process_segs",
  2069. "kind": "function"
  2070. }
  2071. ]
  2072. }
  2073. ],
  2074. "codeFlows": [
  2075. {
  2076. "threadFlows": [
  2077. {
  2078. "locations": [
  2079. {
  2080. "location": {
  2081. "physicalLocation": {
  2082. "artifactLocation": {
  2083. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2084. },
  2085. "region": {
  2086. "startLine": 282,
  2087. "startColumn": 9
  2088. }
  2089. }
  2090. },
  2091. "importance": "unimportant"
  2092. },
  2093. {
  2094. "location": {
  2095. "physicalLocation": {
  2096. "artifactLocation": {
  2097. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2098. },
  2099. "region": {
  2100. "startLine": 283,
  2101. "startColumn": 10
  2102. }
  2103. }
  2104. },
  2105. "importance": "unimportant"
  2106. },
  2107. {
  2108. "location": {
  2109. "physicalLocation": {
  2110. "artifactLocation": {
  2111. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2112. },
  2113. "region": {
  2114. "startLine": 284,
  2115. "startColumn": 10
  2116. }
  2117. },
  2118. "message": {
  2119. "text": "\"best_length\" ist NULL"
  2120. }
  2121. },
  2122. "kinds": [
  2123. "declaration"
  2124. ],
  2125. "importance": "essential"
  2126. },
  2127. {
  2128. "location": {
  2129. "physicalLocation": {
  2130. "artifactLocation": {
  2131. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2132. },
  2133. "region": {
  2134. "startLine": 286,
  2135. "startColumn": 9
  2136. }
  2137. }
  2138. },
  2139. "importance": "unimportant"
  2140. },
  2141. {
  2142. "location": {
  2143. "physicalLocation": {
  2144. "artifactLocation": {
  2145. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2146. },
  2147. "region": {
  2148. "startLine": 287,
  2149. "startColumn": 15
  2150. }
  2151. }
  2152. },
  2153. "importance": "unimportant"
  2154. },
  2155. {
  2156. "location": {
  2157. "physicalLocation": {
  2158. "artifactLocation": {
  2159. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2160. },
  2161. "region": {
  2162. "startLine": 288,
  2163. "startColumn": 9
  2164. }
  2165. }
  2166. },
  2167. "importance": "unimportant"
  2168. },
  2169. {
  2170. "location": {
  2171. "physicalLocation": {
  2172. "artifactLocation": {
  2173. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2174. },
  2175. "region": {
  2176. "startLine": 288,
  2177. "startColumn": 13
  2178. }
  2179. }
  2180. },
  2181. "importance": "unimportant"
  2182. },
  2183. {
  2184. "location": {
  2185. "physicalLocation": {
  2186. "artifactLocation": {
  2187. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2188. },
  2189. "region": {
  2190. "startLine": 291,
  2191. "startColumn": 15
  2192. }
  2193. }
  2194. },
  2195. "importance": "unimportant"
  2196. },
  2197. {
  2198. "location": {
  2199. "physicalLocation": {
  2200. "artifactLocation": {
  2201. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2202. },
  2203. "region": {
  2204. "startLine": 292,
  2205. "startColumn": 10
  2206. }
  2207. }
  2208. },
  2209. "importance": "unimportant"
  2210. },
  2211. {
  2212. "location": {
  2213. "physicalLocation": {
  2214. "artifactLocation": {
  2215. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2216. },
  2217. "region": {
  2218. "startLine": 293,
  2219. "startColumn": 19
  2220. }
  2221. }
  2222. },
  2223. "importance": "unimportant"
  2224. },
  2225. {
  2226. "location": {
  2227. "physicalLocation": {
  2228. "artifactLocation": {
  2229. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2230. },
  2231. "region": {
  2232. "startLine": 296,
  2233. "startColumn": 9
  2234. }
  2235. }
  2236. },
  2237. "importance": "unimportant"
  2238. },
  2239. {
  2240. "location": {
  2241. "physicalLocation": {
  2242. "artifactLocation": {
  2243. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2244. },
  2245. "region": {
  2246. "startLine": 297,
  2247. "startColumn": 9
  2248. }
  2249. }
  2250. },
  2251. "importance": "unimportant"
  2252. },
  2253. {
  2254. "location": {
  2255. "physicalLocation": {
  2256. "artifactLocation": {
  2257. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2258. },
  2259. "region": {
  2260. "startLine": 299,
  2261. "startColumn": 9
  2262. }
  2263. }
  2264. },
  2265. "importance": "unimportant"
  2266. },
  2267. {
  2268. "location": {
  2269. "physicalLocation": {
  2270. "artifactLocation": {
  2271. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2272. },
  2273. "region": {
  2274. "startLine": 300,
  2275. "startColumn": 9
  2276. }
  2277. }
  2278. },
  2279. "importance": "unimportant"
  2280. },
  2281. {
  2282. "location": {
  2283. "physicalLocation": {
  2284. "artifactLocation": {
  2285. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2286. },
  2287. "region": {
  2288. "startLine": 301,
  2289. "startColumn": 9
  2290. }
  2291. }
  2292. },
  2293. "importance": "unimportant"
  2294. },
  2295. {
  2296. "location": {
  2297. "physicalLocation": {
  2298. "artifactLocation": {
  2299. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2300. },
  2301. "region": {
  2302. "startLine": 303,
  2303. "startColumn": 20
  2304. }
  2305. }
  2306. },
  2307. "importance": "unimportant"
  2308. },
  2309. {
  2310. "location": {
  2311. "physicalLocation": {
  2312. "artifactLocation": {
  2313. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2314. },
  2315. "region": {
  2316. "startLine": 304,
  2317. "startColumn": 9
  2318. }
  2319. }
  2320. },
  2321. "importance": "unimportant"
  2322. },
  2323. {
  2324. "location": {
  2325. "physicalLocation": {
  2326. "artifactLocation": {
  2327. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2328. },
  2329. "region": {
  2330. "startLine": 306,
  2331. "startColumn": 9
  2332. }
  2333. }
  2334. },
  2335. "importance": "unimportant"
  2336. },
  2337. {
  2338. "location": {
  2339. "physicalLocation": {
  2340. "artifactLocation": {
  2341. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2342. },
  2343. "region": {
  2344. "startLine": 307,
  2345. "startColumn": 9
  2346. }
  2347. }
  2348. },
  2349. "importance": "unimportant"
  2350. },
  2351. {
  2352. "location": {
  2353. "physicalLocation": {
  2354. "artifactLocation": {
  2355. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2356. },
  2357. "region": {
  2358. "startLine": 308,
  2359. "startColumn": 9
  2360. }
  2361. }
  2362. },
  2363. "importance": "unimportant"
  2364. },
  2365. {
  2366. "location": {
  2367. "physicalLocation": {
  2368. "artifactLocation": {
  2369. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2370. },
  2371. "region": {
  2372. "startLine": 308,
  2373. "startColumn": 12
  2374. }
  2375. }
  2376. },
  2377. "importance": "unimportant"
  2378. },
  2379. {
  2380. "location": {
  2381. "physicalLocation": {
  2382. "artifactLocation": {
  2383. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2384. },
  2385. "region": {
  2386. "startLine": 310,
  2387. "startColumn": 16
  2388. }
  2389. },
  2390. "message": {
  2391. "text": "Diese Verzweigung überspringen (Annahme: \"scm_vv!=-1\" ist false)"
  2392. }
  2393. },
  2394. "kinds": [
  2395. "branch"
  2396. ],
  2397. "importance": "important"
  2398. },
  2399. {
  2400. "location": {
  2401. "physicalLocation": {
  2402. "artifactLocation": {
  2403. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2404. },
  2405. "region": {
  2406. "startLine": 318,
  2407. "startColumn": 49
  2408. }
  2409. },
  2410. "message": {
  2411. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  2412. }
  2413. },
  2414. "kinds": [
  2415. "branch"
  2416. ],
  2417. "importance": "important"
  2418. },
  2419. {
  2420. "location": {
  2421. "physicalLocation": {
  2422. "artifactLocation": {
  2423. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2424. },
  2425. "region": {
  2426. "startLine": 323,
  2427. "startColumn": 9
  2428. }
  2429. }
  2430. },
  2431. "importance": "unimportant"
  2432. },
  2433. {
  2434. "location": {
  2435. "physicalLocation": {
  2436. "artifactLocation": {
  2437. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2438. },
  2439. "region": {
  2440. "startLine": 329,
  2441. "startColumn": 8
  2442. }
  2443. }
  2444. },
  2445. "importance": "unimportant"
  2446. },
  2447. {
  2448. "location": {
  2449. "physicalLocation": {
  2450. "artifactLocation": {
  2451. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2452. },
  2453. "region": {
  2454. "startLine": 330,
  2455. "startColumn": 14
  2456. }
  2457. }
  2458. },
  2459. "importance": "unimportant"
  2460. },
  2461. {
  2462. "location": {
  2463. "physicalLocation": {
  2464. "artifactLocation": {
  2465. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2466. },
  2467. "region": {
  2468. "startLine": 330,
  2469. "startColumn": 23
  2470. }
  2471. },
  2472. "message": {
  2473. "text": "Diese Schleife überspringen (Annahme: \"seg<seg_count\" ist false)"
  2474. }
  2475. },
  2476. "kinds": [
  2477. "branch"
  2478. ],
  2479. "importance": "important"
  2480. },
  2481. {
  2482. "location": {
  2483. "physicalLocation": {
  2484. "artifactLocation": {
  2485. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2486. },
  2487. "region": {
  2488. "startLine": 372,
  2489. "startColumn": 16
  2490. }
  2491. }
  2492. },
  2493. "importance": "unimportant"
  2494. },
  2495. {
  2496. "location": {
  2497. "physicalLocation": {
  2498. "artifactLocation": {
  2499. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2500. },
  2501. "region": {
  2502. "startLine": 372,
  2503. "startColumn": 27
  2504. }
  2505. },
  2506. "message": {
  2507. "text": "In diese Schleife eintreten (Annahme: \"state<5\")"
  2508. }
  2509. },
  2510. "kinds": [
  2511. "branch"
  2512. ],
  2513. "importance": "important"
  2514. },
  2515. {
  2516. "location": {
  2517. "physicalLocation": {
  2518. "artifactLocation": {
  2519. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  2520. },
  2521. "region": {
  2522. "startLine": 373,
  2523. "startColumn": 19
  2524. }
  2525. },
  2526. "message": {
  2527. "text": "\"best_length\" wird dereferenziert, kann jedoch weiterhin NULL sein."
  2528. }
  2529. },
  2530. "kinds": [
  2531. "usage"
  2532. ],
  2533. "importance": "essential"
  2534. }
  2535. ]
  2536. }
  2537. ]
  2538. }
  2539. ]
  2540. }
  2541. ],
  2542. "tool": {
  2543. "driver": {
  2544. "name": "PREfast",
  2545. "fullName": "PREfast Code Analysis",
  2546. "version": "14.29.30159.0",
  2547. "informationUri": "https://aka.ms/cpp/ca"
  2548. }
  2549. },
  2550. "invocations": [
  2551. {
  2552. "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_ec4cb357ast -typedil -f ..\\..\\thirdparty\\zint\\backend\\maxicode.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\\maxicode.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",
  2553. "executionSuccessful": true
  2554. }
  2555. ],
  2556. "artifacts": [
  2557. {
  2558. "location": {
  2559. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/emf.c"
  2560. },
  2561. "roles": [
  2562. "analysisTarget",
  2563. "resultFile"
  2564. ],
  2565. "hashes": {
  2566. "md5": "6d535616aa38ecd3bd9157b4f1ba2f1e"
  2567. }
  2568. },
  2569. {
  2570. "location": {
  2571. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/common.h"
  2572. },
  2573. "hashes": {
  2574. "md5": "4204dbbc879b836e2d98ba7e947037ca"
  2575. }
  2576. },
  2577. {
  2578. "location": {
  2579. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/zint.h"
  2580. },
  2581. "hashes": {
  2582. "md5": "52ace3d3df4d440075f3460c1759b827"
  2583. }
  2584. },
  2585. {
  2586. "location": {
  2587. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/zintconfig.h"
  2588. },
  2589. "hashes": {
  2590. "md5": "c79a63ec9936f235fa16610640c6ddb4"
  2591. }
  2592. },
  2593. {
  2594. "location": {
  2595. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/filemem.h"
  2596. },
  2597. "hashes": {
  2598. "md5": "6af75d55db05fdefb3fdc0db6e6fb1a2"
  2599. }
  2600. },
  2601. {
  2602. "location": {
  2603. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/output.h"
  2604. },
  2605. "hashes": {
  2606. "md5": "15c62089655f396890f0d781baffdfef"
  2607. }
  2608. },
  2609. {
  2610. "location": {
  2611. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/emf.h"
  2612. },
  2613. "hashes": {
  2614. "md5": "998da547ba5b99b51f7a0b0f1f0a47c9"
  2615. }
  2616. },
  2617. {
  2618. "location": {
  2619. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/eci.c"
  2620. },
  2621. "roles": [
  2622. "analysisTarget",
  2623. "resultFile"
  2624. ],
  2625. "hashes": {
  2626. "md5": "e9678c6c10d7b5d416c03c8858c45a9b"
  2627. }
  2628. },
  2629. {
  2630. "location": {
  2631. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/eci.h"
  2632. },
  2633. "hashes": {
  2634. "md5": "f2f0f7c011dc0a0d7c510f2fdbc70c6c"
  2635. }
  2636. },
  2637. {
  2638. "location": {
  2639. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/eci_sb.h"
  2640. },
  2641. "hashes": {
  2642. "md5": "26ea335e85f642fb5339f3fc239e686a"
  2643. }
  2644. },
  2645. {
  2646. "location": {
  2647. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/big5.h"
  2648. },
  2649. "hashes": {
  2650. "md5": "e0c8c14a7b09e5675d12982e3cb39a32"
  2651. }
  2652. },
  2653. {
  2654. "location": {
  2655. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gb18030.h"
  2656. },
  2657. "hashes": {
  2658. "md5": "39f30b9e58753bc6f287fcecb6cc0cfa"
  2659. }
  2660. },
  2661. {
  2662. "location": {
  2663. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gb2312.h"
  2664. },
  2665. "hashes": {
  2666. "md5": "6fce7e1ba34bc0c1375189bd99e55a72"
  2667. }
  2668. },
  2669. {
  2670. "location": {
  2671. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gbk.h"
  2672. },
  2673. "hashes": {
  2674. "md5": "3d5503c61be97727c804403048bd4233"
  2675. }
  2676. },
  2677. {
  2678. "location": {
  2679. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/ksx1001.h"
  2680. },
  2681. "hashes": {
  2682. "md5": "55d60b433b9a99e93afe5a233085f810"
  2683. }
  2684. },
  2685. {
  2686. "location": {
  2687. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/sjis.h"
  2688. },
  2689. "hashes": {
  2690. "md5": "72248d7bc4d344332d8cac0034d817ee"
  2691. }
  2692. },
  2693. {
  2694. "location": {
  2695. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dxfilmedge.c"
  2696. },
  2697. "roles": [
  2698. "analysisTarget"
  2699. ],
  2700. "hashes": {
  2701. "md5": "f87df1bd444800d9edec38462b4cad23"
  2702. }
  2703. },
  2704. {
  2705. "location": {
  2706. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/dotcode.c"
  2707. },
  2708. "roles": [
  2709. "analysisTarget",
  2710. "resultFile"
  2711. ],
  2712. "hashes": {
  2713. "md5": "e3f523ef7dad9213e8e718188c429f89"
  2714. }
  2715. },
  2716. {
  2717. "location": {
  2718. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/gs1.h"
  2719. },
  2720. "hashes": {
  2721. "md5": "d43346840a9524bd9b70a3ab634e2a1c"
  2722. }
  2723. },
  2724. {
  2725. "location": {
  2726. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/dmatrix.c"
  2727. },
  2728. "roles": [
  2729. "analysisTarget",
  2730. "resultFile"
  2731. ],
  2732. "hashes": {
  2733. "md5": "a941e5f609274d08ab76dc67c39f935b"
  2734. }
  2735. },
  2736. {
  2737. "location": {
  2738. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/reedsol.h"
  2739. },
  2740. "hashes": {
  2741. "md5": "689adb6be13e830305cac3006456111e"
  2742. }
  2743. },
  2744. {
  2745. "location": {
  2746. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dmatrix.h"
  2747. },
  2748. "hashes": {
  2749. "md5": "f85867e1c76fd4d6d302cbece71b590e"
  2750. }
  2751. },
  2752. {
  2753. "location": {
  2754. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dmatrix_trace.h"
  2755. },
  2756. "hashes": {
  2757. "md5": "89ffd7e33d004369193a5e51ebb714c5"
  2758. }
  2759. },
  2760. {
  2761. "location": {
  2762. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/dllversion.c"
  2763. },
  2764. "roles": [
  2765. "analysisTarget"
  2766. ],
  2767. "hashes": {
  2768. "md5": "06d0a86da29c0fe0e1a6995db79b956d"
  2769. }
  2770. },
  2771. {
  2772. "location": {
  2773. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/composite.c"
  2774. },
  2775. "roles": [
  2776. "analysisTarget",
  2777. "resultFile"
  2778. ],
  2779. "hashes": {
  2780. "md5": "68d22ba1cb0ccafcb1da0ba9fd50037f"
  2781. }
  2782. },
  2783. {
  2784. "location": {
  2785. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/pdf417.h"
  2786. },
  2787. "hashes": {
  2788. "md5": "b72ee8e321017130fed546f1b39c4486"
  2789. }
  2790. },
  2791. {
  2792. "location": {
  2793. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/general_field.h"
  2794. },
  2795. "hashes": {
  2796. "md5": "02523de2512651998303587be5f0a3e6"
  2797. }
  2798. },
  2799. {
  2800. "location": {
  2801. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/composite.h"
  2802. },
  2803. "hashes": {
  2804. "md5": "adfd98cf740d9430309d6a5ac6703d61"
  2805. }
  2806. },
  2807. {
  2808. "location": {
  2809. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/common.c"
  2810. },
  2811. "roles": [
  2812. "analysisTarget",
  2813. "resultFile"
  2814. ],
  2815. "hashes": {
  2816. "md5": "9b0c2ef9bd83407e387df4913d9cd035"
  2817. }
  2818. },
  2819. {
  2820. "location": {
  2821. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/code49.c"
  2822. },
  2823. "roles": [
  2824. "analysisTarget",
  2825. "resultFile"
  2826. ],
  2827. "hashes": {
  2828. "md5": "debd938b5de2e6dd43f48192398beb06"
  2829. }
  2830. },
  2831. {
  2832. "location": {
  2833. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/code49.h"
  2834. },
  2835. "hashes": {
  2836. "md5": "f6a892542846c700476501a1a4b34c24"
  2837. }
  2838. },
  2839. {
  2840. "location": {
  2841. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/code16k.c"
  2842. },
  2843. "roles": [
  2844. "analysisTarget"
  2845. ],
  2846. "hashes": {
  2847. "md5": "5d6c3fa6a17d3d7088772b2bb90f1dca"
  2848. }
  2849. },
  2850. {
  2851. "location": {
  2852. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/code128.h"
  2853. },
  2854. "hashes": {
  2855. "md5": "f161f78cfd77f4839fe93551d75409a3"
  2856. }
  2857. },
  2858. {
  2859. "location": {
  2860. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/code128.c"
  2861. },
  2862. "roles": [
  2863. "analysisTarget",
  2864. "resultFile"
  2865. ],
  2866. "hashes": {
  2867. "md5": "df9f2cc234a772fb5f2e382ffd4959f0"
  2868. }
  2869. },
  2870. {
  2871. "location": {
  2872. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/code1.c"
  2873. },
  2874. "roles": [
  2875. "analysisTarget",
  2876. "resultFile"
  2877. ],
  2878. "hashes": {
  2879. "md5": "95ff3143619dfeebe6e75b8f401667ca"
  2880. }
  2881. },
  2882. {
  2883. "location": {
  2884. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/code1.h"
  2885. },
  2886. "hashes": {
  2887. "md5": "a39892a0526184a130976f6e57599eaa"
  2888. }
  2889. },
  2890. {
  2891. "location": {
  2892. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/large.h"
  2893. },
  2894. "hashes": {
  2895. "md5": "f9d0bdd54b17e310d4e65fe4e747016c"
  2896. }
  2897. },
  2898. {
  2899. "location": {
  2900. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/code.c"
  2901. },
  2902. "roles": [
  2903. "analysisTarget",
  2904. "resultFile"
  2905. ],
  2906. "hashes": {
  2907. "md5": "d6d88ce7d50227925a3715b512b00628"
  2908. }
  2909. },
  2910. {
  2911. "location": {
  2912. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/channel_precalcs.h"
  2913. },
  2914. "hashes": {
  2915. "md5": "c04b4a9bdd4b6b12d2dd7e03d96988a5"
  2916. }
  2917. },
  2918. {
  2919. "location": {
  2920. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/codablock.c"
  2921. },
  2922. "roles": [
  2923. "analysisTarget",
  2924. "resultFile"
  2925. ],
  2926. "hashes": {
  2927. "md5": "3842daef00aef36153b6414b60e41a70"
  2928. }
  2929. },
  2930. {
  2931. "location": {
  2932. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/bmp.c"
  2933. },
  2934. "roles": [
  2935. "analysisTarget"
  2936. ],
  2937. "hashes": {
  2938. "md5": "5f38a12a2e9e788cb027c18cb2348bc1"
  2939. }
  2940. },
  2941. {
  2942. "location": {
  2943. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/bmp.h"
  2944. },
  2945. "hashes": {
  2946. "md5": "27562f96aed61cafab58574ecdb6aed0"
  2947. }
  2948. },
  2949. {
  2950. "location": {
  2951. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/bc412.c"
  2952. },
  2953. "roles": [
  2954. "analysisTarget"
  2955. ],
  2956. "hashes": {
  2957. "md5": "6bf4dadf809e24be300f3c93f2f6d0ae"
  2958. }
  2959. },
  2960. {
  2961. "location": {
  2962. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/aztec.c"
  2963. },
  2964. "roles": [
  2965. "analysisTarget",
  2966. "resultFile"
  2967. ],
  2968. "hashes": {
  2969. "md5": "79d23d274482d5af5bd446a54ce56408"
  2970. }
  2971. },
  2972. {
  2973. "location": {
  2974. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/aztec.h"
  2975. },
  2976. "hashes": {
  2977. "md5": "43e465c7a56b8d1f2a652532efb86e05"
  2978. }
  2979. },
  2980. {
  2981. "location": {
  2982. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/auspost.c"
  2983. },
  2984. "roles": [
  2985. "analysisTarget",
  2986. "resultFile"
  2987. ],
  2988. "hashes": {
  2989. "md5": "6b437d9fa374f38303bdd8a30a68f27e"
  2990. }
  2991. },
  2992. {
  2993. "location": {
  2994. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/2of5.c"
  2995. },
  2996. "roles": [
  2997. "analysisTarget",
  2998. "resultFile"
  2999. ],
  3000. "hashes": {
  3001. "md5": "b0ef91f80a4152b004e1fdf5b536adff"
  3002. }
  3003. },
  3004. {
  3005. "location": {
  3006. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci.c"
  3007. },
  3008. "roles": [
  3009. "analysisTarget"
  3010. ],
  3011. "hashes": {
  3012. "md5": "95307720f0ec03c5d38e2894b804c60e"
  3013. }
  3014. },
  3015. {
  3016. "location": {
  3017. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci.h"
  3018. },
  3019. "hashes": {
  3020. "md5": "da031c02c4d523fadc42cc72439f7a7e"
  3021. }
  3022. },
  3023. {
  3024. "location": {
  3025. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_common.h"
  3026. },
  3027. "hashes": {
  3028. "md5": "18da9dbfb9b275964a7d0032570b08ac"
  3029. }
  3030. },
  3031. {
  3032. "location": {
  3033. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_sb.h"
  3034. },
  3035. "hashes": {
  3036. "md5": "187a854bf25bbf498b2202e94c8b5ac0"
  3037. }
  3038. },
  3039. {
  3040. "location": {
  3041. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_big5.h"
  3042. },
  3043. "hashes": {
  3044. "md5": "8beffe91bc05a8346770de8438ccbb9e"
  3045. }
  3046. },
  3047. {
  3048. "location": {
  3049. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_gb18030.h"
  3050. },
  3051. "hashes": {
  3052. "md5": "8ee8a6a22b80db942eca616d9f30bb11"
  3053. }
  3054. },
  3055. {
  3056. "location": {
  3057. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_gb2312.h"
  3058. },
  3059. "hashes": {
  3060. "md5": "f5f6b8cea973b9c4234ead49a33584b8"
  3061. }
  3062. },
  3063. {
  3064. "location": {
  3065. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_gbk.h"
  3066. },
  3067. "hashes": {
  3068. "md5": "24d09e6b149d8e1077c8735d6787c95c"
  3069. }
  3070. },
  3071. {
  3072. "location": {
  3073. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_ksx1001.h"
  3074. },
  3075. "hashes": {
  3076. "md5": "f2e23d3f92470b9c9b1a21f67f1c0e54"
  3077. }
  3078. },
  3079. {
  3080. "location": {
  3081. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zxing-cpp/core/src/libzueci/zueci_sjis.h"
  3082. },
  3083. "hashes": {
  3084. "md5": "3e81259e77f703403a0196aa85925e43"
  3085. }
  3086. },
  3087. {
  3088. "location": {
  3089. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/qr.c"
  3090. },
  3091. "roles": [
  3092. "analysisTarget",
  3093. "resultFile"
  3094. ],
  3095. "hashes": {
  3096. "md5": "74500d6a61ec64542dd8fc7392a92e40"
  3097. }
  3098. },
  3099. {
  3100. "location": {
  3101. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/qr.h"
  3102. },
  3103. "hashes": {
  3104. "md5": "b1ac11efe17386fcd32685829f953b45"
  3105. }
  3106. },
  3107. {
  3108. "location": {
  3109. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/ps.c"
  3110. },
  3111. "roles": [
  3112. "analysisTarget",
  3113. "resultFile"
  3114. ],
  3115. "hashes": {
  3116. "md5": "ccb35287ba5ff21f9b084048874b5147"
  3117. }
  3118. },
  3119. {
  3120. "location": {
  3121. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/postal.c"
  3122. },
  3123. "roles": [
  3124. "analysisTarget",
  3125. "resultFile"
  3126. ],
  3127. "hashes": {
  3128. "md5": "4b08aec153fb77aa523481bc567f44ec"
  3129. }
  3130. },
  3131. {
  3132. "location": {
  3133. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/png.c"
  3134. },
  3135. "roles": [
  3136. "analysisTarget"
  3137. ],
  3138. "hashes": {
  3139. "md5": "d0818e12717a49154cd69b45bb6f93d0"
  3140. }
  3141. },
  3142. {
  3143. "location": {
  3144. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/plessey.c"
  3145. },
  3146. "roles": [
  3147. "analysisTarget",
  3148. "resultFile"
  3149. ],
  3150. "hashes": {
  3151. "md5": "9f182aa1244840540f3e2bb4241fbffd"
  3152. }
  3153. },
  3154. {
  3155. "location": {
  3156. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/pdf417.c"
  3157. },
  3158. "roles": [
  3159. "analysisTarget",
  3160. "resultFile"
  3161. ],
  3162. "hashes": {
  3163. "md5": "e3e0db57019a821084fa8336a2d8aaa4"
  3164. }
  3165. },
  3166. {
  3167. "location": {
  3168. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/pdf417_tabs.h"
  3169. },
  3170. "hashes": {
  3171. "md5": "ec7bc64f772b98c86208590028950eed"
  3172. }
  3173. },
  3174. {
  3175. "location": {
  3176. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/pdf417_trace.h"
  3177. },
  3178. "hashes": {
  3179. "md5": "81c44ed93e59c09f11302494ce507659"
  3180. }
  3181. },
  3182. {
  3183. "location": {
  3184. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/pcx.c"
  3185. },
  3186. "roles": [
  3187. "analysisTarget",
  3188. "resultFile"
  3189. ],
  3190. "hashes": {
  3191. "md5": "da5d3cd4d15f2803b3374ebb430bed3b"
  3192. }
  3193. },
  3194. {
  3195. "location": {
  3196. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/pcx.h"
  3197. },
  3198. "hashes": {
  3199. "md5": "91cbdeeb41b603a9c7eebc8ea87cc682"
  3200. }
  3201. },
  3202. {
  3203. "location": {
  3204. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/output.c"
  3205. },
  3206. "roles": [
  3207. "analysisTarget",
  3208. "resultFile"
  3209. ],
  3210. "hashes": {
  3211. "md5": "acabb14edf95a53e712f718133c9994c"
  3212. }
  3213. },
  3214. {
  3215. "location": {
  3216. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/medical.c"
  3217. },
  3218. "roles": [
  3219. "analysisTarget",
  3220. "resultFile"
  3221. ],
  3222. "hashes": {
  3223. "md5": "3cc3fd6c64c366ba9e0c8383132c4a4b"
  3224. }
  3225. },
  3226. {
  3227. "location": {
  3228. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/zint/backend/maxicode.c"
  3229. },
  3230. "roles": [
  3231. "analysisTarget",
  3232. "resultFile"
  3233. ],
  3234. "hashes": {
  3235. "md5": "b81ca5552a7f9bc5a4db7cb3bf5132d8"
  3236. }
  3237. },
  3238. {
  3239. "location": {
  3240. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/zint/backend/maxicode.h"
  3241. },
  3242. "hashes": {
  3243. "md5": "4366d9d6744597f62d15e9f4cb3cc7d5"
  3244. }
  3245. }
  3246. ]
  3247. }
  3248. ]
  3249. }