graphics.nativecodeanalysis.sarif 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  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": "C6001",
  9. "message": {
  10. "text": "Nicht initialisierter Speicher \"val\" wird verwendet."
  11. },
  12. "locations": [
  13. {
  14. "physicalLocation": {
  15. "artifactLocation": {
  16. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  17. },
  18. "region": {
  19. "startLine": 1371,
  20. "startColumn": 36,
  21. "endLine": 1371,
  22. "endColumn": 36
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "pixRenderPtaArb",
  28. "kind": "function"
  29. }
  30. ]
  31. }
  32. ],
  33. "codeFlows": [
  34. {
  35. "threadFlows": [
  36. {
  37. "locations": [
  38. {
  39. "location": {
  40. "physicalLocation": {
  41. "artifactLocation": {
  42. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  43. },
  44. "region": {
  45. "startLine": 1326,
  46. "startColumn": 11
  47. }
  48. }
  49. },
  50. "importance": "unimportant"
  51. },
  52. {
  53. "location": {
  54. "physicalLocation": {
  55. "artifactLocation": {
  56. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  57. },
  58. "region": {
  59. "startLine": 1326,
  60. "startColumn": 14
  61. }
  62. }
  63. },
  64. "importance": "unimportant"
  65. },
  66. {
  67. "location": {
  68. "physicalLocation": {
  69. "artifactLocation": {
  70. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  71. },
  72. "region": {
  73. "startLine": 1326,
  74. "startColumn": 17
  75. }
  76. }
  77. },
  78. "importance": "unimportant"
  79. },
  80. {
  81. "location": {
  82. "physicalLocation": {
  83. "artifactLocation": {
  84. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  85. },
  86. "region": {
  87. "startLine": 1326,
  88. "startColumn": 20
  89. }
  90. }
  91. },
  92. "importance": "unimportant"
  93. },
  94. {
  95. "location": {
  96. "physicalLocation": {
  97. "artifactLocation": {
  98. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  99. },
  100. "region": {
  101. "startLine": 1326,
  102. "startColumn": 23
  103. }
  104. }
  105. },
  106. "importance": "unimportant"
  107. },
  108. {
  109. "location": {
  110. "physicalLocation": {
  111. "artifactLocation": {
  112. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  113. },
  114. "region": {
  115. "startLine": 1326,
  116. "startColumn": 26
  117. }
  118. }
  119. },
  120. "importance": "unimportant"
  121. },
  122. {
  123. "location": {
  124. "physicalLocation": {
  125. "artifactLocation": {
  126. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  127. },
  128. "region": {
  129. "startLine": 1326,
  130. "startColumn": 29
  131. }
  132. }
  133. },
  134. "importance": "unimportant"
  135. },
  136. {
  137. "location": {
  138. "physicalLocation": {
  139. "artifactLocation": {
  140. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  141. },
  142. "region": {
  143. "startLine": 1326,
  144. "startColumn": 32
  145. }
  146. }
  147. },
  148. "importance": "unimportant"
  149. },
  150. {
  151. "location": {
  152. "physicalLocation": {
  153. "artifactLocation": {
  154. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  155. },
  156. "region": {
  157. "startLine": 1327,
  158. "startColumn": 11
  159. }
  160. },
  161. "message": {
  162. "text": "\"val\" ist nicht initialisiert"
  163. }
  164. },
  165. "kinds": [
  166. "declaration"
  167. ],
  168. "importance": "essential"
  169. },
  170. {
  171. "location": {
  172. "physicalLocation": {
  173. "artifactLocation": {
  174. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  175. },
  176. "region": {
  177. "startLine": 1328,
  178. "startColumn": 11
  179. }
  180. }
  181. },
  182. "importance": "unimportant"
  183. },
  184. {
  185. "location": {
  186. "physicalLocation": {
  187. "artifactLocation": {
  188. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  189. },
  190. "region": {
  191. "startLine": 1329,
  192. "startColumn": 11
  193. }
  194. }
  195. },
  196. "importance": "unimportant"
  197. },
  198. {
  199. "location": {
  200. "physicalLocation": {
  201. "artifactLocation": {
  202. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  203. },
  204. "region": {
  205. "startLine": 1331,
  206. "startColumn": 9
  207. }
  208. },
  209. "message": {
  210. "text": "Diese Verzweigung überspringen (Annahme: \"!pix\" ist false)"
  211. }
  212. },
  213. "kinds": [
  214. "branch"
  215. ],
  216. "importance": "important"
  217. },
  218. {
  219. "location": {
  220. "physicalLocation": {
  221. "artifactLocation": {
  222. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  223. },
  224. "region": {
  225. "startLine": 1333,
  226. "startColumn": 9
  227. }
  228. },
  229. "message": {
  230. "text": "Diese Verzweigung überspringen (Annahme: \"!pta\" ist false)"
  231. }
  232. },
  233. "kinds": [
  234. "branch"
  235. ],
  236. "importance": "important"
  237. },
  238. {
  239. "location": {
  240. "physicalLocation": {
  241. "artifactLocation": {
  242. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  243. },
  244. "region": {
  245. "startLine": 1335,
  246. "startColumn": 7
  247. }
  248. }
  249. },
  250. "importance": "unimportant"
  251. },
  252. {
  253. "location": {
  254. "physicalLocation": {
  255. "artifactLocation": {
  256. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  257. },
  258. "region": {
  259. "startLine": 1336,
  260. "startColumn": 46
  261. }
  262. },
  263. "message": {
  264. "text": "Diese Verzweigung überspringen (Annahme: \"d!=1&&d!=2&&d!=4&&d!=8&&d!=32\" ist false)"
  265. }
  266. },
  267. "kinds": [
  268. "branch"
  269. ],
  270. "importance": "important"
  271. },
  272. {
  273. "location": {
  274. "physicalLocation": {
  275. "artifactLocation": {
  276. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  277. },
  278. "region": {
  279. "startLine": 1339,
  280. "startColumn": 11
  281. }
  282. },
  283. "message": {
  284. "text": "Diese Verzweigung überspringen (Annahme: \"d==1\" ist false)"
  285. }
  286. },
  287. "kinds": [
  288. "branch"
  289. ],
  290. "importance": "important"
  291. },
  292. {
  293. "location": {
  294. "physicalLocation": {
  295. "artifactLocation": {
  296. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  297. },
  298. "region": {
  299. "startLine": 1344,
  300. "startColumn": 10
  301. }
  302. }
  303. },
  304. "importance": "unimportant"
  305. },
  306. {
  307. "location": {
  308. "physicalLocation": {
  309. "artifactLocation": {
  310. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  311. },
  312. "region": {
  313. "startLine": 1345,
  314. "startColumn": 21
  315. }
  316. }
  317. },
  318. "importance": "unimportant"
  319. },
  320. {
  321. "location": {
  322. "physicalLocation": {
  323. "artifactLocation": {
  324. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  325. },
  326. "region": {
  327. "startLine": 1346,
  328. "startColumn": 9
  329. }
  330. },
  331. "message": {
  332. "text": "Diese Verzweigung überspringen (Annahme: \"cmap\" ist false)"
  333. }
  334. },
  335. "kinds": [
  336. "branch"
  337. ],
  338. "importance": "important"
  339. },
  340. {
  341. "location": {
  342. "physicalLocation": {
  343. "artifactLocation": {
  344. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  345. },
  346. "region": {
  347. "startLine": 1349,
  348. "startColumn": 15
  349. }
  350. },
  351. "message": {
  352. "text": "Diese Verzweigung überspringen (Annahme: \"d==2\" ist false)"
  353. }
  354. },
  355. "kinds": [
  356. "branch"
  357. ],
  358. "importance": "important"
  359. },
  360. {
  361. "location": {
  362. "physicalLocation": {
  363. "artifactLocation": {
  364. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  365. },
  366. "region": {
  367. "startLine": 1351,
  368. "startColumn": 20
  369. }
  370. },
  371. "message": {
  372. "text": "Diese Verzweigung überspringen (Annahme: \"d==4\" ist false)"
  373. }
  374. },
  375. "kinds": [
  376. "branch"
  377. ],
  378. "importance": "important"
  379. },
  380. {
  381. "location": {
  382. "physicalLocation": {
  383. "artifactLocation": {
  384. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  385. },
  386. "region": {
  387. "startLine": 1353,
  388. "startColumn": 20
  389. }
  390. },
  391. "message": {
  392. "text": "Diese Verzweigung überspringen (Annahme: \"d==8\" ist false)"
  393. }
  394. },
  395. "kinds": [
  396. "branch"
  397. ],
  398. "importance": "important"
  399. },
  400. {
  401. "location": {
  402. "physicalLocation": {
  403. "artifactLocation": {
  404. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  405. },
  406. "region": {
  407. "startLine": 1356,
  408. "startColumn": 28
  409. }
  410. }
  411. },
  412. "importance": "unimportant"
  413. },
  414. {
  415. "location": {
  416. "physicalLocation": {
  417. "artifactLocation": {
  418. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  419. },
  420. "region": {
  421. "startLine": 1359,
  422. "startColumn": 7
  423. }
  424. }
  425. },
  426. "importance": "unimportant"
  427. },
  428. {
  429. "location": {
  430. "physicalLocation": {
  431. "artifactLocation": {
  432. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  433. },
  434. "region": {
  435. "startLine": 1360,
  436. "startColumn": 12
  437. }
  438. }
  439. },
  440. "importance": "unimportant"
  441. },
  442. {
  443. "location": {
  444. "physicalLocation": {
  445. "artifactLocation": {
  446. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  447. },
  448. "region": {
  449. "startLine": 1360,
  450. "startColumn": 19
  451. }
  452. },
  453. "message": {
  454. "text": "In diese Schleife eintreten (Annahme: \"i<n\")"
  455. }
  456. },
  457. "kinds": [
  458. "branch"
  459. ],
  460. "importance": "important"
  461. },
  462. {
  463. "location": {
  464. "physicalLocation": {
  465. "artifactLocation": {
  466. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  467. },
  468. "region": {
  469. "startLine": 1361,
  470. "startColumn": 18
  471. }
  472. }
  473. },
  474. "importance": "unimportant"
  475. },
  476. {
  477. "location": {
  478. "physicalLocation": {
  479. "artifactLocation": {
  480. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  481. },
  482. "region": {
  483. "startLine": 1362,
  484. "startColumn": 19
  485. }
  486. },
  487. "message": {
  488. "text": "Diese Verzweigung überspringen (Annahme: \"x<0||x>=w\" ist false)"
  489. }
  490. },
  491. "kinds": [
  492. "branch"
  493. ],
  494. "importance": "important"
  495. },
  496. {
  497. "location": {
  498. "physicalLocation": {
  499. "artifactLocation": {
  500. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  501. },
  502. "region": {
  503. "startLine": 1364,
  504. "startColumn": 19
  505. }
  506. },
  507. "message": {
  508. "text": "Diese Verzweigung überspringen (Annahme: \"y<0||y>=h\" ist false)"
  509. }
  510. },
  511. "kinds": [
  512. "branch"
  513. ],
  514. "importance": "important"
  515. },
  516. {
  517. "location": {
  518. "physicalLocation": {
  519. "artifactLocation": {
  520. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  521. },
  522. "region": {
  523. "startLine": 1366,
  524. "startColumn": 13
  525. }
  526. },
  527. "message": {
  528. "text": "Diese Verzweigung überspringen (Annahme: \"cmap\" ist false)"
  529. }
  530. },
  531. "kinds": [
  532. "branch"
  533. ],
  534. "importance": "important"
  535. },
  536. {
  537. "location": {
  538. "physicalLocation": {
  539. "artifactLocation": {
  540. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  541. },
  542. "region": {
  543. "startLine": 1368,
  544. "startColumn": 20
  545. }
  546. },
  547. "message": {
  548. "text": "Diese Verzweigung überspringen (Annahme: \"d==32\" ist false)"
  549. }
  550. },
  551. "kinds": [
  552. "branch"
  553. ],
  554. "importance": "important"
  555. },
  556. {
  557. "location": {
  558. "physicalLocation": {
  559. "artifactLocation": {
  560. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  561. },
  562. "region": {
  563. "startLine": 1371,
  564. "startColumn": 24
  565. }
  566. },
  567. "message": {
  568. "text": "\"val\" ist ein Eingabe-/Ausgabeargument für \"pixSetPixel\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\leptonica\\src\\allheaders.h:1517 deklariert)"
  569. }
  570. },
  571. "kinds": [
  572. "declaration"
  573. ],
  574. "importance": "important"
  575. },
  576. {
  577. "location": {
  578. "physicalLocation": {
  579. "artifactLocation": {
  580. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  581. },
  582. "region": {
  583. "startLine": 1371,
  584. "startColumn": 36
  585. }
  586. },
  587. "message": {
  588. "text": "\"val\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  589. }
  590. },
  591. "kinds": [
  592. "usage"
  593. ],
  594. "importance": "essential"
  595. }
  596. ]
  597. }
  598. ]
  599. }
  600. ]
  601. }
  602. ],
  603. "tool": {
  604. "driver": {
  605. "name": "PREfast",
  606. "fullName": "PREfast Code Analysis",
  607. "version": "14.29.30159.0",
  608. "informationUri": "https://aka.ms/cpp/ca"
  609. }
  610. },
  611. "invocations": [
  612. {
  613. "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_bf248eebast -typedil -f ..\\..\\thirdparty\\leptonica\\src\\graphics.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\\include -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\leptonica\\src -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\scripts\\tesseract -nologo -W 3 -diagnostics:column -GF -Og -Ot -Oy -Oi -ltcg -DCODE_ANALYSIS -DHAVE_LEPTONICA -DLEPTONICA_INTERCEPT_ALLOC=1 -DHAVE_LIBPNG=0 -DHAVE_LIBTIFF=0 -DHAVE_LIBJPEG=0 -DHAVE_LIBZ=0 -DHAVE_LIBGIF=0 -DHAVE_LIBUNGIF=0 -DHAVE_LIBWEBP=0 -DHAVE_LIBWEBP_ANIM=0 -DHAVE_LIBJP2K=0 -D_CRT_SECURE_NO_WARNINGS -DNDEBUG -D_LIB -D_UNICODE -D_MT -D_DLL -GS -D_M_FP_PRECISE -Fox64\\Release\\libleptonica\\graphics.obj -FdC:\\Users\\wruser\\source\\repos\\SharpMuPDF\\x64\\Release\\libleptonica.pdb -external:W 3 -Gd -wd 4018 -wd 4100 -wd 4101 -wd 4244 -wd 4200 -wd 4267 -wd 4305 -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",
  614. "executionSuccessful": true
  615. }
  616. ],
  617. "artifacts": [
  618. {
  619. "location": {
  620. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen4.c"
  621. },
  622. "roles": [
  623. "analysisTarget"
  624. ],
  625. "hashes": {
  626. "md5": "3a82f1ac44975b5317cf5d04fa947c01"
  627. }
  628. },
  629. {
  630. "location": {
  631. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/allheaders.h"
  632. },
  633. "hashes": {
  634. "md5": "999d534a4ad60a2b7511196f8e6509e4"
  635. }
  636. },
  637. {
  638. "location": {
  639. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/alltypes.h"
  640. },
  641. "hashes": {
  642. "md5": "a53441277a26b8f0bb926cb17df2dfb7"
  643. }
  644. },
  645. {
  646. "location": {
  647. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/tesseract/endianness.h"
  648. },
  649. "hashes": {
  650. "md5": "c5b34010ae58ee994fb431b8736f6f4c"
  651. }
  652. },
  653. {
  654. "location": {
  655. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/environ.h"
  656. },
  657. "hashes": {
  658. "md5": "f12002e24a0542a8b820943238c03777"
  659. }
  660. },
  661. {
  662. "location": {
  663. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array.h"
  664. },
  665. "hashes": {
  666. "md5": "905c3a077932844148e6ce1a082ad3fd"
  667. }
  668. },
  669. {
  670. "location": {
  671. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.h"
  672. },
  673. "hashes": {
  674. "md5": "9698e12ada03098f0d12a09c12cf6063"
  675. }
  676. },
  677. {
  678. "location": {
  679. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.h"
  680. },
  681. "hashes": {
  682. "md5": "a67f5cea1a1d468a3c082936a3c6ceae"
  683. }
  684. },
  685. {
  686. "location": {
  687. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.h"
  688. },
  689. "hashes": {
  690. "md5": "b4a5a51c54ae3ecf0da810f807a29c83"
  691. }
  692. },
  693. {
  694. "location": {
  695. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.h"
  696. },
  697. "hashes": {
  698. "md5": "c1df1f5c4859fcff277e25e2af485e32"
  699. }
  700. },
  701. {
  702. "location": {
  703. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptra.h"
  704. },
  705. "hashes": {
  706. "md5": "09b92e82a1ea998e1f7e4023c008cf51"
  707. }
  708. },
  709. {
  710. "location": {
  711. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/queue.h"
  712. },
  713. "hashes": {
  714. "md5": "ceded2bcd4bc2c553683c2643f69e6a5"
  715. }
  716. },
  717. {
  718. "location": {
  719. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rbtree.h"
  720. },
  721. "hashes": {
  722. "md5": "803860fffdd81a3fc3fff30294c8f8cb"
  723. }
  724. },
  725. {
  726. "location": {
  727. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stack.h"
  728. },
  729. "hashes": {
  730. "md5": "0740173ae3e4e7de5f4c6fe821a4f0e7"
  731. }
  732. },
  733. {
  734. "location": {
  735. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.h"
  736. },
  737. "hashes": {
  738. "md5": "dcb43ea7a43e1fddf264fe501878db3d"
  739. }
  740. },
  741. {
  742. "location": {
  743. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.h"
  744. },
  745. "hashes": {
  746. "md5": "e34a65325b94bfa5d1dca2f9424ca1f0"
  747. }
  748. },
  749. {
  750. "location": {
  751. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord.h"
  752. },
  753. "hashes": {
  754. "md5": "90250b263699310ce40909628dbd7758"
  755. }
  756. },
  757. {
  758. "location": {
  759. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorfill.h"
  760. },
  761. "hashes": {
  762. "md5": "c9cf5349852bf9054e7f3c5bbafac76e"
  763. }
  764. },
  765. {
  766. "location": {
  767. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp.h"
  768. },
  769. "hashes": {
  770. "md5": "493b17891572abea870917ab41bf12c6"
  771. }
  772. },
  773. {
  774. "location": {
  775. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.h"
  776. },
  777. "hashes": {
  778. "md5": "55cf40c06fd537d7b8714aaf1f7a0042"
  779. }
  780. },
  781. {
  782. "location": {
  783. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/imageio.h"
  784. },
  785. "hashes": {
  786. "md5": "f517e3d907fee1ec4c974fad7dfdb29d"
  787. }
  788. },
  789. {
  790. "location": {
  791. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jbclass.h"
  792. },
  793. "hashes": {
  794. "md5": "c922deeb8eb844a7a2260f9c0a709218"
  795. }
  796. },
  797. {
  798. "location": {
  799. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morph.h"
  800. },
  801. "hashes": {
  802. "md5": "44855c4ddac6a28583d89947fcdbfdfc"
  803. }
  804. },
  805. {
  806. "location": {
  807. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix.h"
  808. },
  809. "hashes": {
  810. "md5": "1fc6f88f9c79b5158469904b66645f7d"
  811. }
  812. },
  813. {
  814. "location": {
  815. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/recog.h"
  816. },
  817. "hashes": {
  818. "md5": "f49b37b951f9036fb2dcf726b741db4e"
  819. }
  820. },
  821. {
  822. "location": {
  823. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/regutils.h"
  824. },
  825. "hashes": {
  826. "md5": "fe7a3db017220d34590fd29869e5d61c"
  827. }
  828. },
  829. {
  830. "location": {
  831. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stringcode.h"
  832. },
  833. "hashes": {
  834. "md5": "94fce55340931aded34d6d7fd60d842e"
  835. }
  836. },
  837. {
  838. "location": {
  839. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sudoku.h"
  840. },
  841. "hashes": {
  842. "md5": "fb101a2c192580933be1b8236c2bdc15"
  843. }
  844. },
  845. {
  846. "location": {
  847. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/watershed.h"
  848. },
  849. "hashes": {
  850. "md5": "44a71dd892c2fab6459227f7bcc400ee"
  851. }
  852. },
  853. {
  854. "location": {
  855. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen3.c"
  856. },
  857. "roles": [
  858. "analysisTarget"
  859. ],
  860. "hashes": {
  861. "md5": "b48614e975c09a03547e759b911f5359"
  862. }
  863. },
  864. {
  865. "location": {
  866. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen2.c"
  867. },
  868. "roles": [
  869. "analysisTarget"
  870. ],
  871. "hashes": {
  872. "md5": "8ad6891f2edce3383af6916769c41602"
  873. }
  874. },
  875. {
  876. "location": {
  877. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen1.c"
  878. },
  879. "roles": [
  880. "analysisTarget"
  881. ],
  882. "hashes": {
  883. "md5": "b7bcdd2390111aecc3149c70911a9db2"
  884. }
  885. },
  886. {
  887. "location": {
  888. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmpiostub.c"
  889. },
  890. "roles": [
  891. "analysisTarget"
  892. ],
  893. "hashes": {
  894. "md5": "fe53e17707c01ad1ef2333752ebc32ee"
  895. }
  896. },
  897. {
  898. "location": {
  899. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/bmpio.c"
  900. },
  901. "roles": [
  902. "analysisTarget",
  903. "resultFile"
  904. ],
  905. "hashes": {
  906. "md5": "367f3081ffba0952522913b49b13bf52"
  907. }
  908. },
  909. {
  910. "location": {
  911. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix_internal.h"
  912. },
  913. "hashes": {
  914. "md5": "4dd89382186e6b211b4078679810a19e"
  915. }
  916. },
  917. {
  918. "location": {
  919. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmp.h"
  920. },
  921. "hashes": {
  922. "md5": "942e4ba8687e01b1fe5afae65245bd29"
  923. }
  924. },
  925. {
  926. "location": {
  927. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.c"
  928. },
  929. "roles": [
  930. "analysisTarget"
  931. ],
  932. "hashes": {
  933. "md5": "2f5d274fa401e05d5d15d9e58a7ed8a5"
  934. }
  935. },
  936. {
  937. "location": {
  938. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmfdata.h"
  939. },
  940. "hashes": {
  941. "md5": "4ded82c05fb39404bb67e686cd38b9cf"
  942. }
  943. },
  944. {
  945. "location": {
  946. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/blend.c"
  947. },
  948. "roles": [
  949. "analysisTarget",
  950. "resultFile"
  951. ],
  952. "hashes": {
  953. "md5": "f734d4b17d7b51568aa083f8444a8e7d"
  954. }
  955. },
  956. {
  957. "location": {
  958. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binreduce.c"
  959. },
  960. "roles": [
  961. "analysisTarget"
  962. ],
  963. "hashes": {
  964. "md5": "a6bbc62580de9a69daca0ed4a05782ba"
  965. }
  966. },
  967. {
  968. "location": {
  969. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binexpand.c"
  970. },
  971. "roles": [
  972. "analysisTarget"
  973. ],
  974. "hashes": {
  975. "md5": "a91e32559d5d0814d80b73b5bc7df24b"
  976. }
  977. },
  978. {
  979. "location": {
  980. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binarize.c"
  981. },
  982. "roles": [
  983. "analysisTarget"
  984. ],
  985. "hashes": {
  986. "md5": "02c1761dcc6ab4bf416e6055f672ab07"
  987. }
  988. },
  989. {
  990. "location": {
  991. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilinear.c"
  992. },
  993. "roles": [
  994. "analysisTarget"
  995. ],
  996. "hashes": {
  997. "md5": "4a09fe363bcb37df9bb1cd9adbf0c91a"
  998. }
  999. },
  1000. {
  1001. "location": {
  1002. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.c"
  1003. },
  1004. "roles": [
  1005. "analysisTarget"
  1006. ],
  1007. "hashes": {
  1008. "md5": "bc1af17cf793ac23886176cb0d23b029"
  1009. }
  1010. },
  1011. {
  1012. "location": {
  1013. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.h"
  1014. },
  1015. "hashes": {
  1016. "md5": "d3078c8d7a38ea07d93a58f8a4982a8d"
  1017. }
  1018. },
  1019. {
  1020. "location": {
  1021. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.c"
  1022. },
  1023. "roles": [
  1024. "analysisTarget"
  1025. ],
  1026. "hashes": {
  1027. "md5": "8fd7f505a82a8b97b29e52618397178d"
  1028. }
  1029. },
  1030. {
  1031. "location": {
  1032. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/baseline.c"
  1033. },
  1034. "roles": [
  1035. "analysisTarget",
  1036. "resultFile"
  1037. ],
  1038. "hashes": {
  1039. "md5": "a4f7bc8214c6a7c7592a2e29d78addc1"
  1040. }
  1041. },
  1042. {
  1043. "location": {
  1044. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.c"
  1045. },
  1046. "roles": [
  1047. "analysisTarget"
  1048. ],
  1049. "hashes": {
  1050. "md5": "137a526c992e6e6683cf2b6ece5a016d"
  1051. }
  1052. },
  1053. {
  1054. "location": {
  1055. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affinecompose.c"
  1056. },
  1057. "roles": [
  1058. "analysisTarget"
  1059. ],
  1060. "hashes": {
  1061. "md5": "020190a9b3f19478dfb5484f3d4fc1e5"
  1062. }
  1063. },
  1064. {
  1065. "location": {
  1066. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affine.c"
  1067. },
  1068. "roles": [
  1069. "analysisTarget"
  1070. ],
  1071. "hashes": {
  1072. "md5": "8cea6c30ebe9cbe0f61f7482e81b4c5c"
  1073. }
  1074. },
  1075. {
  1076. "location": {
  1077. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/adaptmap.c"
  1078. },
  1079. "roles": [
  1080. "analysisTarget"
  1081. ],
  1082. "hashes": {
  1083. "md5": "69c4c232ba768de8b5d9de5e0d23b399"
  1084. }
  1085. },
  1086. {
  1087. "location": {
  1088. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.c"
  1089. },
  1090. "roles": [
  1091. "analysisTarget"
  1092. ],
  1093. "hashes": {
  1094. "md5": "7f73dd56f3cfed6d45d19fd442396938"
  1095. }
  1096. },
  1097. {
  1098. "location": {
  1099. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.h"
  1100. },
  1101. "hashes": {
  1102. "md5": "271e50e32565a028dadd3554dc7d6be9"
  1103. }
  1104. },
  1105. {
  1106. "location": {
  1107. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz.h"
  1108. },
  1109. "hashes": {
  1110. "md5": "c1da725222ed64f4094c94f9ec5fa9d3"
  1111. }
  1112. },
  1113. {
  1114. "location": {
  1115. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/version.h"
  1116. },
  1117. "hashes": {
  1118. "md5": "49b087287cd81a61255c9afad5a04a0e"
  1119. }
  1120. },
  1121. {
  1122. "location": {
  1123. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/config.h"
  1124. },
  1125. "hashes": {
  1126. "md5": "8152555cd3c484684047fd1c533eb1a6"
  1127. }
  1128. },
  1129. {
  1130. "location": {
  1131. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/system.h"
  1132. },
  1133. "hashes": {
  1134. "md5": "90ae89bc0bb247c30f11092380a6bf84"
  1135. }
  1136. },
  1137. {
  1138. "location": {
  1139. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/export.h"
  1140. },
  1141. "hashes": {
  1142. "md5": "9392a759e17aa12d7d4516ab296a9110"
  1143. }
  1144. },
  1145. {
  1146. "location": {
  1147. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/memento.h"
  1148. },
  1149. "hashes": {
  1150. "md5": "09ba15c0fd78518e062db9266c4a1239"
  1151. }
  1152. },
  1153. {
  1154. "location": {
  1155. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/track-usage.h"
  1156. },
  1157. "hashes": {
  1158. "md5": "9c2721d2c03d4b6e071d4c291e4f8eec"
  1159. }
  1160. },
  1161. {
  1162. "location": {
  1163. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/context.h"
  1164. },
  1165. "hashes": {
  1166. "md5": "0a8420b8805e435b64f295b16cab53af"
  1167. }
  1168. },
  1169. {
  1170. "location": {
  1171. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/geometry.h"
  1172. },
  1173. "hashes": {
  1174. "md5": "b90a31a4dca86a00ae7644b0735a3899"
  1175. }
  1176. },
  1177. {
  1178. "location": {
  1179. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output.h"
  1180. },
  1181. "hashes": {
  1182. "md5": "f73558b9d27504499a5a45e8f3a3584a"
  1183. }
  1184. },
  1185. {
  1186. "location": {
  1187. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/buffer.h"
  1188. },
  1189. "hashes": {
  1190. "md5": "6fc8c6b8b9a2692519a1d0e505f71c6e"
  1191. }
  1192. },
  1193. {
  1194. "location": {
  1195. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/string-util.h"
  1196. },
  1197. "hashes": {
  1198. "md5": "4f84321fffde964fbdfa179e97b1fb5b"
  1199. }
  1200. },
  1201. {
  1202. "location": {
  1203. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/stream.h"
  1204. },
  1205. "hashes": {
  1206. "md5": "17262319f59df230360c31bff22506f4"
  1207. }
  1208. },
  1209. {
  1210. "location": {
  1211. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/log.h"
  1212. },
  1213. "hashes": {
  1214. "md5": "fdce0ca431e1f40c09081052f1b739cb"
  1215. }
  1216. },
  1217. {
  1218. "location": {
  1219. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/crypt.h"
  1220. },
  1221. "hashes": {
  1222. "md5": "9ffc8e340c06f2d28aa62b6fcd35dc5d"
  1223. }
  1224. },
  1225. {
  1226. "location": {
  1227. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/getopt.h"
  1228. },
  1229. "hashes": {
  1230. "md5": "e47118058134aec927847ca9dae5d390"
  1231. }
  1232. },
  1233. {
  1234. "location": {
  1235. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/hash.h"
  1236. },
  1237. "hashes": {
  1238. "md5": "d9b655ab558a40c18e24c7cdddeab1fc"
  1239. }
  1240. },
  1241. {
  1242. "location": {
  1243. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pool.h"
  1244. },
  1245. "hashes": {
  1246. "md5": "2f150c59f73344040a7de6455c00529e"
  1247. }
  1248. },
  1249. {
  1250. "location": {
  1251. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/tree.h"
  1252. },
  1253. "hashes": {
  1254. "md5": "66441b22b31d2cc979eb50d828de8d89"
  1255. }
  1256. },
  1257. {
  1258. "location": {
  1259. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bidi.h"
  1260. },
  1261. "hashes": {
  1262. "md5": "b3f22e9d6b6250f2a9dfd4c1620af41d"
  1263. }
  1264. },
  1265. {
  1266. "location": {
  1267. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/xml.h"
  1268. },
  1269. "hashes": {
  1270. "md5": "9e6cf72f1f3c757d8956f19631d1f942"
  1271. }
  1272. },
  1273. {
  1274. "location": {
  1275. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/archive.h"
  1276. },
  1277. "hashes": {
  1278. "md5": "fe3a9fa4f6093e521afe5b0d4a214e89"
  1279. }
  1280. },
  1281. {
  1282. "location": {
  1283. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/json.h"
  1284. },
  1285. "hashes": {
  1286. "md5": "1ccd7f1e2c3cf9db156761b2341941bb"
  1287. }
  1288. },
  1289. {
  1290. "location": {
  1291. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compress.h"
  1292. },
  1293. "hashes": {
  1294. "md5": "870b86535307b1bcf48a05cc86bac4f6"
  1295. }
  1296. },
  1297. {
  1298. "location": {
  1299. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pixmap.h"
  1300. },
  1301. "hashes": {
  1302. "md5": "4a2994ca7e320d46c91af9462864e472"
  1303. }
  1304. },
  1305. {
  1306. "location": {
  1307. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/store.h"
  1308. },
  1309. "hashes": {
  1310. "md5": "613e60235eba9e2c0fe6735fbcbf444d"
  1311. }
  1312. },
  1313. {
  1314. "location": {
  1315. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/separation.h"
  1316. },
  1317. "hashes": {
  1318. "md5": "948f2a79178edd5a86cab9b357cc8f84"
  1319. }
  1320. },
  1321. {
  1322. "location": {
  1323. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/color.h"
  1324. },
  1325. "hashes": {
  1326. "md5": "c394579670ed653192ccdf07cc810543"
  1327. }
  1328. },
  1329. {
  1330. "location": {
  1331. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compressed-buffer.h"
  1332. },
  1333. "hashes": {
  1334. "md5": "f0ad50536d7884e3d221498388a145a1"
  1335. }
  1336. },
  1337. {
  1338. "location": {
  1339. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/filter.h"
  1340. },
  1341. "hashes": {
  1342. "md5": "a20437fde476b45123005b54567b8b3c"
  1343. }
  1344. },
  1345. {
  1346. "location": {
  1347. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap.h"
  1348. },
  1349. "hashes": {
  1350. "md5": "1cbe01acfade2baf416ab5be1bd1907e"
  1351. }
  1352. },
  1353. {
  1354. "location": {
  1355. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap-imp.h"
  1356. },
  1357. "hashes": {
  1358. "md5": "9923f50e47c46bd4e02747da6de32946"
  1359. }
  1360. },
  1361. {
  1362. "location": {
  1363. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/image.h"
  1364. },
  1365. "hashes": {
  1366. "md5": "a987413ff35bef8ce2048369564be0e0"
  1367. }
  1368. },
  1369. {
  1370. "location": {
  1371. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bitmap.h"
  1372. },
  1373. "hashes": {
  1374. "md5": "0e6ee78ac3a456106ea3ddca63ef5e35"
  1375. }
  1376. },
  1377. {
  1378. "location": {
  1379. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/shade.h"
  1380. },
  1381. "hashes": {
  1382. "md5": "c06b062bd0326fa40b071527b257ae24"
  1383. }
  1384. },
  1385. {
  1386. "location": {
  1387. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/font.h"
  1388. },
  1389. "hashes": {
  1390. "md5": "b667092834a21c0abe97b2817ace34a7"
  1391. }
  1392. },
  1393. {
  1394. "location": {
  1395. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/path.h"
  1396. },
  1397. "hashes": {
  1398. "md5": "200da6c866aa0a7faec7f24f176e47e9"
  1399. }
  1400. },
  1401. {
  1402. "location": {
  1403. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/text.h"
  1404. },
  1405. "hashes": {
  1406. "md5": "d8f8e0890cc682b0974ec3f779260f6e"
  1407. }
  1408. },
  1409. {
  1410. "location": {
  1411. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph.h"
  1412. },
  1413. "hashes": {
  1414. "md5": "74fdb3bee7c6f25df43323008fcdf60a"
  1415. }
  1416. },
  1417. {
  1418. "location": {
  1419. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/device.h"
  1420. },
  1421. "hashes": {
  1422. "md5": "ba44b7292a72479dfe60b62352e57fd5"
  1423. }
  1424. },
  1425. {
  1426. "location": {
  1427. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/display-list.h"
  1428. },
  1429. "hashes": {
  1430. "md5": "4944d19bf380f14ccda5ced45ab04dcc"
  1431. }
  1432. },
  1433. {
  1434. "location": {
  1435. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/structured-text.h"
  1436. },
  1437. "hashes": {
  1438. "md5": "fdd5507292d57da0c3c2ee591f5f0d08"
  1439. }
  1440. },
  1441. {
  1442. "location": {
  1443. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/types.h"
  1444. },
  1445. "hashes": {
  1446. "md5": "385688b131d3b981c11fefca1c6bd08f"
  1447. }
  1448. },
  1449. {
  1450. "location": {
  1451. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/transition.h"
  1452. },
  1453. "hashes": {
  1454. "md5": "45a1a3da16cfa7a1135ed97b151d59e5"
  1455. }
  1456. },
  1457. {
  1458. "location": {
  1459. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph-cache.h"
  1460. },
  1461. "hashes": {
  1462. "md5": "f8a51df4e57ec830f97cefefd04beb21"
  1463. }
  1464. },
  1465. {
  1466. "location": {
  1467. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/link.h"
  1468. },
  1469. "hashes": {
  1470. "md5": "e2beb74537ffa880d751627856f4ec2e"
  1471. }
  1472. },
  1473. {
  1474. "location": {
  1475. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/outline.h"
  1476. },
  1477. "hashes": {
  1478. "md5": "a4b090458246a9412f1822e8f69861e5"
  1479. }
  1480. },
  1481. {
  1482. "location": {
  1483. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/document.h"
  1484. },
  1485. "hashes": {
  1486. "md5": "d5dd17e54ecd7a0c4c420b7fba8bbbb8"
  1487. }
  1488. },
  1489. {
  1490. "location": {
  1491. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/util.h"
  1492. },
  1493. "hashes": {
  1494. "md5": "b52379b9e022798f7ffeb183e593355b"
  1495. }
  1496. },
  1497. {
  1498. "location": {
  1499. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/writer.h"
  1500. },
  1501. "hashes": {
  1502. "md5": "8f22433f8330cf7094af3c2c0221d1aa"
  1503. }
  1504. },
  1505. {
  1506. "location": {
  1507. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/band-writer.h"
  1508. },
  1509. "hashes": {
  1510. "md5": "cce70daf29f5059d81d3004bac3a529b"
  1511. }
  1512. },
  1513. {
  1514. "location": {
  1515. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/write-pixmap.h"
  1516. },
  1517. "hashes": {
  1518. "md5": "55a92a6277d51e8193cb9d68dbc04555"
  1519. }
  1520. },
  1521. {
  1522. "location": {
  1523. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output-svg.h"
  1524. },
  1525. "hashes": {
  1526. "md5": "562415573a8921b26596771d6c4c5c67"
  1527. }
  1528. },
  1529. {
  1530. "location": {
  1531. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story.h"
  1532. },
  1533. "hashes": {
  1534. "md5": "103650ee4814b1f96618672e45b766d4"
  1535. }
  1536. },
  1537. {
  1538. "location": {
  1539. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story-writer.h"
  1540. },
  1541. "hashes": {
  1542. "md5": "aaafb6cf4f48ade004e1d15d06eaffe7"
  1543. }
  1544. },
  1545. {
  1546. "location": {
  1547. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/deskew.h"
  1548. },
  1549. "hashes": {
  1550. "md5": "9599a8121baecccfd203d91c95561903"
  1551. }
  1552. },
  1553. {
  1554. "location": {
  1555. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/barcode.h"
  1556. },
  1557. "hashes": {
  1558. "md5": "58fc28d74fa337724ff70a29778ac6ed"
  1559. }
  1560. },
  1561. {
  1562. "location": {
  1563. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convertfiles.c"
  1564. },
  1565. "roles": [
  1566. "analysisTarget"
  1567. ],
  1568. "hashes": {
  1569. "md5": "724f5d1e2f686dc7a5f62ee87cd4b7c0"
  1570. }
  1571. },
  1572. {
  1573. "location": {
  1574. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/conncomp.c"
  1575. },
  1576. "roles": [
  1577. "analysisTarget"
  1578. ],
  1579. "hashes": {
  1580. "md5": "439795e422d51c02d86e41c5f2612cca"
  1581. }
  1582. },
  1583. {
  1584. "location": {
  1585. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/compare.c"
  1586. },
  1587. "roles": [
  1588. "analysisTarget"
  1589. ],
  1590. "hashes": {
  1591. "md5": "32a03abbd3ffed661bfab2965b017a8b"
  1592. }
  1593. },
  1594. {
  1595. "location": {
  1596. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorspace.c"
  1597. },
  1598. "roles": [
  1599. "analysisTarget"
  1600. ],
  1601. "hashes": {
  1602. "md5": "4f9001939678a369e7c84460dff9d21b"
  1603. }
  1604. },
  1605. {
  1606. "location": {
  1607. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorseg.c"
  1608. },
  1609. "roles": [
  1610. "analysisTarget",
  1611. "resultFile"
  1612. ],
  1613. "hashes": {
  1614. "md5": "1ab66c018aa504e6fee2bdca55a3da21"
  1615. }
  1616. },
  1617. {
  1618. "location": {
  1619. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorquant2.c"
  1620. },
  1621. "roles": [
  1622. "analysisTarget",
  1623. "resultFile"
  1624. ],
  1625. "hashes": {
  1626. "md5": "08cd6523f246d256d2e5b719eb667fd9"
  1627. }
  1628. },
  1629. {
  1630. "location": {
  1631. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorquant1.c"
  1632. },
  1633. "roles": [
  1634. "analysisTarget"
  1635. ],
  1636. "hashes": {
  1637. "md5": "f40f68bd9d4f0559471f4519d089341c"
  1638. }
  1639. },
  1640. {
  1641. "location": {
  1642. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormorph.c"
  1643. },
  1644. "roles": [
  1645. "analysisTarget"
  1646. ],
  1647. "hashes": {
  1648. "md5": "c7d2b1c8606d5cdc3213275c61eefc08"
  1649. }
  1650. },
  1651. {
  1652. "location": {
  1653. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormap.c"
  1654. },
  1655. "roles": [
  1656. "analysisTarget"
  1657. ],
  1658. "hashes": {
  1659. "md5": "07d58362026f2ee8c4c94a12a850cf55"
  1660. }
  1661. },
  1662. {
  1663. "location": {
  1664. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/coloring.c"
  1665. },
  1666. "roles": [
  1667. "analysisTarget"
  1668. ],
  1669. "hashes": {
  1670. "md5": "0b2cd914abafa50c0a5d70fe0d70bed0"
  1671. }
  1672. },
  1673. {
  1674. "location": {
  1675. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorcontent.c"
  1676. },
  1677. "roles": [
  1678. "analysisTarget"
  1679. ],
  1680. "hashes": {
  1681. "md5": "f323d957cfd0b4804277e990bddc1052"
  1682. }
  1683. },
  1684. {
  1685. "location": {
  1686. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/classapp.c"
  1687. },
  1688. "roles": [
  1689. "analysisTarget"
  1690. ],
  1691. "hashes": {
  1692. "md5": "031c0fa9ce910dbe883833475136f167"
  1693. }
  1694. },
  1695. {
  1696. "location": {
  1697. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1698. },
  1699. "roles": [
  1700. "analysisTarget",
  1701. "resultFile"
  1702. ],
  1703. "hashes": {
  1704. "md5": "698cbb131be6752bb74a9863349ba9f7"
  1705. }
  1706. },
  1707. {
  1708. "location": {
  1709. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord_internal.h"
  1710. },
  1711. "hashes": {
  1712. "md5": "b4ffaa4ab3329f45a74769526364a5bd"
  1713. }
  1714. },
  1715. {
  1716. "location": {
  1717. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bytearray.c"
  1718. },
  1719. "roles": [
  1720. "analysisTarget"
  1721. ],
  1722. "hashes": {
  1723. "md5": "f479426c83e521920ba5ef2a47f9eeea"
  1724. }
  1725. },
  1726. {
  1727. "location": {
  1728. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array_internal.h"
  1729. },
  1730. "hashes": {
  1731. "md5": "47169f561e914a3f80dd1165d0cc9ac5"
  1732. }
  1733. },
  1734. {
  1735. "location": {
  1736. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc5.c"
  1737. },
  1738. "roles": [
  1739. "analysisTarget"
  1740. ],
  1741. "hashes": {
  1742. "md5": "3bd669a71b8039fe8dc1465c6d9451ea"
  1743. }
  1744. },
  1745. {
  1746. "location": {
  1747. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc4.c"
  1748. },
  1749. "roles": [
  1750. "analysisTarget"
  1751. ],
  1752. "hashes": {
  1753. "md5": "4350db99f137393092bb9e127c545533"
  1754. }
  1755. },
  1756. {
  1757. "location": {
  1758. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc3.c"
  1759. },
  1760. "roles": [
  1761. "analysisTarget"
  1762. ],
  1763. "hashes": {
  1764. "md5": "5ffe93f9dac1ac164c76c827d6b99c2b"
  1765. }
  1766. },
  1767. {
  1768. "location": {
  1769. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/boxfunc2.c"
  1770. },
  1771. "roles": [
  1772. "analysisTarget",
  1773. "resultFile"
  1774. ],
  1775. "hashes": {
  1776. "md5": "06017e461354b622a898e964824feb0a"
  1777. }
  1778. },
  1779. {
  1780. "location": {
  1781. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc1.c"
  1782. },
  1783. "roles": [
  1784. "analysisTarget"
  1785. ],
  1786. "hashes": {
  1787. "md5": "53c0cadfd70352d07c7059cb11b8996d"
  1788. }
  1789. },
  1790. {
  1791. "location": {
  1792. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxbasic.c"
  1793. },
  1794. "roles": [
  1795. "analysisTarget"
  1796. ],
  1797. "hashes": {
  1798. "md5": "9499af84bce2d2cec53f010406b849d0"
  1799. }
  1800. },
  1801. {
  1802. "location": {
  1803. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fpix1.c"
  1804. },
  1805. "roles": [
  1806. "analysisTarget"
  1807. ],
  1808. "hashes": {
  1809. "md5": "32f9040600f84cde037e4633e458e61e"
  1810. }
  1811. },
  1812. {
  1813. "location": {
  1814. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgenlow.1.c"
  1815. },
  1816. "roles": [
  1817. "analysisTarget"
  1818. ],
  1819. "hashes": {
  1820. "md5": "c2e6003fbf822c8846ffdfa4e00d3d97"
  1821. }
  1822. },
  1823. {
  1824. "location": {
  1825. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgen.1.c"
  1826. },
  1827. "roles": [
  1828. "analysisTarget"
  1829. ],
  1830. "hashes": {
  1831. "md5": "1420b32f53bc6448bc82d942625ede55"
  1832. }
  1833. },
  1834. {
  1835. "location": {
  1836. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fmorphauto.c"
  1837. },
  1838. "roles": [
  1839. "analysisTarget",
  1840. "resultFile"
  1841. ],
  1842. "hashes": {
  1843. "md5": "4960763af570d20b74f0b86ca5b79e17"
  1844. }
  1845. },
  1846. {
  1847. "location": {
  1848. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fhmtgenlow.1.c"
  1849. },
  1850. "roles": [
  1851. "analysisTarget"
  1852. ],
  1853. "hashes": {
  1854. "md5": "580542b03b1dc496eb55441227c01c4d"
  1855. }
  1856. },
  1857. {
  1858. "location": {
  1859. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fhmtauto.c"
  1860. },
  1861. "roles": [
  1862. "analysisTarget",
  1863. "resultFile"
  1864. ],
  1865. "hashes": {
  1866. "md5": "407f110417e1da69577f401016c308fa"
  1867. }
  1868. },
  1869. {
  1870. "location": {
  1871. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/enhance.c"
  1872. },
  1873. "roles": [
  1874. "analysisTarget"
  1875. ],
  1876. "hashes": {
  1877. "md5": "1fad11e14f7a7def3488fee226869f47"
  1878. }
  1879. },
  1880. {
  1881. "location": {
  1882. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/encoding.c"
  1883. },
  1884. "roles": [
  1885. "analysisTarget"
  1886. ],
  1887. "hashes": {
  1888. "md5": "663891ec7f132072632069f144467438"
  1889. }
  1890. },
  1891. {
  1892. "location": {
  1893. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/edge.c"
  1894. },
  1895. "roles": [
  1896. "analysisTarget"
  1897. ],
  1898. "hashes": {
  1899. "md5": "16a6b93b118ca74db85d082d2b5dbc30"
  1900. }
  1901. },
  1902. {
  1903. "location": {
  1904. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomblow.2.c"
  1905. },
  1906. "roles": [
  1907. "analysisTarget"
  1908. ],
  1909. "hashes": {
  1910. "md5": "0788c556bc256df2d62891852f16e66e"
  1911. }
  1912. },
  1913. {
  1914. "location": {
  1915. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomb.2.c"
  1916. },
  1917. "roles": [
  1918. "analysisTarget"
  1919. ],
  1920. "hashes": {
  1921. "md5": "ec998985a6538576f25814e7a54b6bc1"
  1922. }
  1923. },
  1924. {
  1925. "location": {
  1926. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnahash.c"
  1927. },
  1928. "roles": [
  1929. "analysisTarget"
  1930. ],
  1931. "hashes": {
  1932. "md5": "a104970312798bb28670ec4b6f1306e5"
  1933. }
  1934. },
  1935. {
  1936. "location": {
  1937. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnafunc1.c"
  1938. },
  1939. "roles": [
  1940. "analysisTarget"
  1941. ],
  1942. "hashes": {
  1943. "md5": "63832a12bd0d51e38cb8fe26df8036ad"
  1944. }
  1945. },
  1946. {
  1947. "location": {
  1948. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnabasic.c"
  1949. },
  1950. "roles": [
  1951. "analysisTarget"
  1952. ],
  1953. "hashes": {
  1954. "md5": "2e8bddfb98a62a2819700b70e3af28da"
  1955. }
  1956. },
  1957. {
  1958. "location": {
  1959. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp4.c"
  1960. },
  1961. "roles": [
  1962. "analysisTarget"
  1963. ],
  1964. "hashes": {
  1965. "md5": "2e5e5727028744821d98f4088779de2a"
  1966. }
  1967. },
  1968. {
  1969. "location": {
  1970. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp3.c"
  1971. },
  1972. "roles": [
  1973. "analysisTarget"
  1974. ],
  1975. "hashes": {
  1976. "md5": "d509becfa83c46484ab01c6acedf06d4"
  1977. }
  1978. },
  1979. {
  1980. "location": {
  1981. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp2.c"
  1982. },
  1983. "roles": [
  1984. "analysisTarget",
  1985. "resultFile"
  1986. ],
  1987. "hashes": {
  1988. "md5": "cfd9a80722d868d9374f4813abab8e96"
  1989. }
  1990. },
  1991. {
  1992. "location": {
  1993. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp1.c"
  1994. },
  1995. "roles": [
  1996. "analysisTarget",
  1997. "resultFile"
  1998. ],
  1999. "hashes": {
  2000. "md5": "674d27d0b21e55fd2d33eeb0ef2b67c3"
  2001. }
  2002. },
  2003. {
  2004. "location": {
  2005. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/correlscore.c"
  2006. },
  2007. "roles": [
  2008. "analysisTarget",
  2009. "resultFile"
  2010. ],
  2011. "hashes": {
  2012. "md5": "4c7a50e236fdc4014526b6de1876117e"
  2013. }
  2014. },
  2015. {
  2016. "location": {
  2017. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convolve.c"
  2018. },
  2019. "roles": [
  2020. "analysisTarget"
  2021. ],
  2022. "hashes": {
  2023. "md5": "3a0ad6a7c7f1268eb3616f2c805cdd1f"
  2024. }
  2025. },
  2026. {
  2027. "location": {
  2028. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morphdwa.c"
  2029. },
  2030. "roles": [
  2031. "analysisTarget",
  2032. "resultFile"
  2033. ],
  2034. "hashes": {
  2035. "md5": "3e4d53bbbcc92987244a35b83b63ab42"
  2036. }
  2037. },
  2038. {
  2039. "location": {
  2040. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morphapp.c"
  2041. },
  2042. "roles": [
  2043. "analysisTarget"
  2044. ],
  2045. "hashes": {
  2046. "md5": "eb8705290a96113560ce5f90dd88b5ce"
  2047. }
  2048. },
  2049. {
  2050. "location": {
  2051. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morph.c"
  2052. },
  2053. "roles": [
  2054. "analysisTarget",
  2055. "resultFile"
  2056. ],
  2057. "hashes": {
  2058. "md5": "69ef8f87618f68b78657248e445f7f09"
  2059. }
  2060. },
  2061. {
  2062. "location": {
  2063. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/map.c"
  2064. },
  2065. "roles": [
  2066. "analysisTarget"
  2067. ],
  2068. "hashes": {
  2069. "md5": "91fe339284bec6b1ee444f7214833ee9"
  2070. }
  2071. },
  2072. {
  2073. "location": {
  2074. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.c"
  2075. },
  2076. "roles": [
  2077. "analysisTarget"
  2078. ],
  2079. "hashes": {
  2080. "md5": "b478579934145f8267478dbf99474df2"
  2081. }
  2082. },
  2083. {
  2084. "location": {
  2085. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/libversions.c"
  2086. },
  2087. "roles": [
  2088. "analysisTarget"
  2089. ],
  2090. "hashes": {
  2091. "md5": "cb12910c25dc7195c3ba4303f814b006"
  2092. }
  2093. },
  2094. {
  2095. "location": {
  2096. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/kernel.c"
  2097. },
  2098. "roles": [
  2099. "analysisTarget"
  2100. ],
  2101. "hashes": {
  2102. "md5": "3129b905f075abf05742d64d347b3c61"
  2103. }
  2104. },
  2105. {
  2106. "location": {
  2107. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jpegiostub.c"
  2108. },
  2109. "roles": [
  2110. "analysisTarget"
  2111. ],
  2112. "hashes": {
  2113. "md5": "4b13eb283323dc6332edae19fd54887a"
  2114. }
  2115. },
  2116. {
  2117. "location": {
  2118. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kiostub.c"
  2119. },
  2120. "roles": [
  2121. "analysisTarget"
  2122. ],
  2123. "hashes": {
  2124. "md5": "d73421f4dd5a240effeab0b7098d9e53"
  2125. }
  2126. },
  2127. {
  2128. "location": {
  2129. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheaderstub.c"
  2130. },
  2131. "roles": [
  2132. "analysisTarget"
  2133. ],
  2134. "hashes": {
  2135. "md5": "0a1cc9e8c5f3d046a2a70703aeb6eff6"
  2136. }
  2137. },
  2138. {
  2139. "location": {
  2140. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheader.c"
  2141. },
  2142. "roles": [
  2143. "analysisTarget"
  2144. ],
  2145. "hashes": {
  2146. "md5": "31483ab4eab5d6a17be23b35406183ec"
  2147. }
  2148. },
  2149. {
  2150. "location": {
  2151. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/jbclass.c"
  2152. },
  2153. "roles": [
  2154. "analysisTarget",
  2155. "resultFile"
  2156. ],
  2157. "hashes": {
  2158. "md5": "39faac93361acf87962e489b12297a8f"
  2159. }
  2160. },
  2161. {
  2162. "location": {
  2163. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.c"
  2164. },
  2165. "roles": [
  2166. "analysisTarget"
  2167. ],
  2168. "hashes": {
  2169. "md5": "9eae6bc65de71970e4bb1436e697fa78"
  2170. }
  2171. },
  2172. {
  2173. "location": {
  2174. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.c"
  2175. },
  2176. "roles": [
  2177. "analysisTarget"
  2178. ],
  2179. "hashes": {
  2180. "md5": "4bd0c129d0c3017ecf74c97f300ff6a4"
  2181. }
  2182. },
  2183. {
  2184. "location": {
  2185. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/grayquant.c"
  2186. },
  2187. "roles": [
  2188. "analysisTarget"
  2189. ],
  2190. "hashes": {
  2191. "md5": "675b975e5cf01bb67bb9bfd141c95112"
  2192. }
  2193. },
  2194. {
  2195. "location": {
  2196. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/graymorph.c"
  2197. },
  2198. "roles": [
  2199. "analysisTarget"
  2200. ],
  2201. "hashes": {
  2202. "md5": "9ff2cc571cafe6e3fb33ec3d558ffd77"
  2203. }
  2204. },
  2205. {
  2206. "location": {
  2207. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  2208. },
  2209. "roles": [
  2210. "analysisTarget",
  2211. "resultFile"
  2212. ],
  2213. "hashes": {
  2214. "md5": "b05809f207b552b8cc275685e53bb0f0"
  2215. }
  2216. }
  2217. ]
  2218. }
  2219. ]
  2220. }