pdfio2.nativecodeanalysis.sarif 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658
  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 \"nbytes85\" wird verwendet."
  11. },
  12. "locations": [
  13. {
  14. "physicalLocation": {
  15. "artifactLocation": {
  16. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  17. },
  18. "region": {
  19. "startLine": 1037,
  20. "startColumn": 25,
  21. "endLine": 1037,
  22. "endColumn": 25
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "l_generateJpegDataMem",
  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/pdfio2.c"
  43. },
  44. "region": {
  45. "startLine": 1006,
  46. "startColumn": 15
  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/pdfio2.c"
  57. },
  58. "region": {
  59. "startLine": 1007,
  60. "startColumn": 15
  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/pdfio2.c"
  71. },
  72. "region": {
  73. "startLine": 1007,
  74. "startColumn": 18
  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/pdfio2.c"
  85. },
  86. "region": {
  87. "startLine": 1007,
  88. "startColumn": 21
  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/pdfio2.c"
  99. },
  100. "region": {
  101. "startLine": 1007,
  102. "startColumn": 27
  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/pdfio2.c"
  113. },
  114. "region": {
  115. "startLine": 1007,
  116. "startColumn": 33
  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/pdfio2.c"
  127. },
  128. "region": {
  129. "startLine": 1007,
  130. "startColumn": 38
  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/pdfio2.c"
  141. },
  142. "region": {
  143. "startLine": 1008,
  144. "startColumn": 15
  145. }
  146. },
  147. "message": {
  148. "text": "\"nbytes85\" ist nicht initialisiert"
  149. }
  150. },
  151. "kinds": [
  152. "declaration"
  153. ],
  154. "importance": "essential"
  155. },
  156. {
  157. "location": {
  158. "physicalLocation": {
  159. "artifactLocation": {
  160. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  161. },
  162. "region": {
  163. "startLine": 1009,
  164. "startColumn": 15
  165. }
  166. }
  167. },
  168. "importance": "unimportant"
  169. },
  170. {
  171. "location": {
  172. "physicalLocation": {
  173. "artifactLocation": {
  174. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  175. },
  176. "region": {
  177. "startLine": 1011,
  178. "startColumn": 9
  179. }
  180. },
  181. "message": {
  182. "text": "Diese Verzweigung überspringen (Annahme: \"!data\" ist false)"
  183. }
  184. },
  185. "kinds": [
  186. "branch"
  187. ],
  188. "importance": "important"
  189. },
  190. {
  191. "location": {
  192. "physicalLocation": {
  193. "artifactLocation": {
  194. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  195. },
  196. "region": {
  197. "startLine": 1015,
  198. "startColumn": 26
  199. }
  200. },
  201. "message": {
  202. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  203. }
  204. },
  205. "kinds": [
  206. "branch"
  207. ],
  208. "importance": "important"
  209. },
  210. {
  211. "location": {
  212. "physicalLocation": {
  213. "artifactLocation": {
  214. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  215. },
  216. "region": {
  217. "startLine": 1019,
  218. "startColumn": 9
  219. }
  220. }
  221. },
  222. "importance": "unimportant"
  223. },
  224. {
  225. "location": {
  226. "physicalLocation": {
  227. "artifactLocation": {
  228. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  229. },
  230. "region": {
  231. "startLine": 1020,
  232. "startColumn": 26
  233. }
  234. }
  235. },
  236. "importance": "unimportant"
  237. },
  238. {
  239. "location": {
  240. "physicalLocation": {
  241. "artifactLocation": {
  242. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  243. },
  244. "region": {
  245. "startLine": 1023,
  246. "startColumn": 21
  247. }
  248. },
  249. "message": {
  250. "text": "Diese Verzweigung überspringen (Annahme: \"ascii85flag==1\" ist false)"
  251. }
  252. },
  253. "kinds": [
  254. "branch"
  255. ],
  256. "importance": "important"
  257. },
  258. {
  259. "location": {
  260. "physicalLocation": {
  261. "artifactLocation": {
  262. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  263. },
  264. "region": {
  265. "startLine": 1032,
  266. "startColumn": 9
  267. }
  268. }
  269. },
  270. "importance": "unimportant"
  271. },
  272. {
  273. "location": {
  274. "physicalLocation": {
  275. "artifactLocation": {
  276. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  277. },
  278. "region": {
  279. "startLine": 1033,
  280. "startColumn": 21
  281. }
  282. },
  283. "message": {
  284. "text": "Diese Verzweigung überspringen (Annahme: \"ascii85flag==0\" 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/pdfio2.c"
  297. },
  298. "region": {
  299. "startLine": 1036,
  300. "startColumn": 21
  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/pdfio2.c"
  311. },
  312. "region": {
  313. "startLine": 1037,
  314. "startColumn": 23
  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/pdfio2.c"
  325. },
  326. "region": {
  327. "startLine": 1037,
  328. "startColumn": 25
  329. }
  330. },
  331. "message": {
  332. "text": "\"nbytes85\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  333. }
  334. },
  335. "kinds": [
  336. "usage"
  337. ],
  338. "importance": "essential"
  339. }
  340. ]
  341. }
  342. ]
  343. }
  344. ]
  345. },
  346. {
  347. "ruleId": "C6001",
  348. "message": {
  349. "text": "Nicht initialisierter Speicher \"nbytes85\" wird verwendet."
  350. },
  351. "locations": [
  352. {
  353. "physicalLocation": {
  354. "artifactLocation": {
  355. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  356. },
  357. "region": {
  358. "startLine": 1171,
  359. "startColumn": 25,
  360. "endLine": 1171,
  361. "endColumn": 25
  362. }
  363. },
  364. "logicalLocations": [
  365. {
  366. "decoratedName": "l_generateG4Data",
  367. "kind": "function"
  368. }
  369. ]
  370. }
  371. ],
  372. "codeFlows": [
  373. {
  374. "threadFlows": [
  375. {
  376. "locations": [
  377. {
  378. "location": {
  379. "physicalLocation": {
  380. "artifactLocation": {
  381. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  382. },
  383. "region": {
  384. "startLine": 1117,
  385. "startColumn": 15
  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/leptonica/src/pdfio2.c"
  396. },
  397. "region": {
  398. "startLine": 1118,
  399. "startColumn": 15
  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/leptonica/src/pdfio2.c"
  410. },
  411. "region": {
  412. "startLine": 1119,
  413. "startColumn": 15
  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/leptonica/src/pdfio2.c"
  424. },
  425. "region": {
  426. "startLine": 1119,
  427. "startColumn": 18
  428. }
  429. }
  430. },
  431. "importance": "unimportant"
  432. },
  433. {
  434. "location": {
  435. "physicalLocation": {
  436. "artifactLocation": {
  437. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  438. },
  439. "region": {
  440. "startLine": 1119,
  441. "startColumn": 21
  442. }
  443. }
  444. },
  445. "importance": "unimportant"
  446. },
  447. {
  448. "location": {
  449. "physicalLocation": {
  450. "artifactLocation": {
  451. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  452. },
  453. "region": {
  454. "startLine": 1119,
  455. "startColumn": 27
  456. }
  457. }
  458. },
  459. "importance": "unimportant"
  460. },
  461. {
  462. "location": {
  463. "physicalLocation": {
  464. "artifactLocation": {
  465. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  466. },
  467. "region": {
  468. "startLine": 1119,
  469. "startColumn": 33
  470. }
  471. }
  472. },
  473. "importance": "unimportant"
  474. },
  475. {
  476. "location": {
  477. "physicalLocation": {
  478. "artifactLocation": {
  479. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  480. },
  481. "region": {
  482. "startLine": 1120,
  483. "startColumn": 15
  484. }
  485. }
  486. },
  487. "importance": "unimportant"
  488. },
  489. {
  490. "location": {
  491. "physicalLocation": {
  492. "artifactLocation": {
  493. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  494. },
  495. "region": {
  496. "startLine": 1121,
  497. "startColumn": 15
  498. }
  499. },
  500. "message": {
  501. "text": "\"nbytes85\" ist nicht initialisiert"
  502. }
  503. },
  504. "kinds": [
  505. "declaration"
  506. ],
  507. "importance": "essential"
  508. },
  509. {
  510. "location": {
  511. "physicalLocation": {
  512. "artifactLocation": {
  513. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  514. },
  515. "region": {
  516. "startLine": 1121,
  517. "startColumn": 25
  518. }
  519. }
  520. },
  521. "importance": "unimportant"
  522. },
  523. {
  524. "location": {
  525. "physicalLocation": {
  526. "artifactLocation": {
  527. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  528. },
  529. "region": {
  530. "startLine": 1122,
  531. "startColumn": 15
  532. }
  533. }
  534. },
  535. "importance": "unimportant"
  536. },
  537. {
  538. "location": {
  539. "physicalLocation": {
  540. "artifactLocation": {
  541. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  542. },
  543. "region": {
  544. "startLine": 1123,
  545. "startColumn": 15
  546. }
  547. }
  548. },
  549. "importance": "unimportant"
  550. },
  551. {
  552. "location": {
  553. "physicalLocation": {
  554. "artifactLocation": {
  555. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  556. },
  557. "region": {
  558. "startLine": 1125,
  559. "startColumn": 9
  560. }
  561. },
  562. "message": {
  563. "text": "Diese Verzweigung überspringen (Annahme: \"!fname\" ist false)"
  564. }
  565. },
  566. "kinds": [
  567. "branch"
  568. ],
  569. "importance": "important"
  570. },
  571. {
  572. "location": {
  573. "physicalLocation": {
  574. "artifactLocation": {
  575. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  576. },
  577. "region": {
  578. "startLine": 1129,
  579. "startColumn": 39
  580. }
  581. },
  582. "message": {
  583. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  584. }
  585. },
  586. "kinds": [
  587. "branch"
  588. ],
  589. "importance": "important"
  590. },
  591. {
  592. "location": {
  593. "physicalLocation": {
  594. "artifactLocation": {
  595. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  596. },
  597. "region": {
  598. "startLine": 1132,
  599. "startColumn": 17
  600. }
  601. }
  602. },
  603. "importance": "unimportant"
  604. },
  605. {
  606. "location": {
  607. "physicalLocation": {
  608. "artifactLocation": {
  609. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  610. },
  611. "region": {
  612. "startLine": 1133,
  613. "startColumn": 11
  614. }
  615. }
  616. },
  617. "importance": "unimportant"
  618. },
  619. {
  620. "location": {
  621. "physicalLocation": {
  622. "artifactLocation": {
  623. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  624. },
  625. "region": {
  626. "startLine": 1134,
  627. "startColumn": 16
  628. }
  629. },
  630. "message": {
  631. "text": "Diese Verzweigung überspringen (Annahme: \"npages!=1\" ist false)"
  632. }
  633. },
  634. "kinds": [
  635. "branch"
  636. ],
  637. "importance": "important"
  638. },
  639. {
  640. "location": {
  641. "physicalLocation": {
  642. "artifactLocation": {
  643. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  644. },
  645. "region": {
  646. "startLine": 1140,
  647. "startColumn": 39
  648. }
  649. },
  650. "message": {
  651. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  652. }
  653. },
  654. "kinds": [
  655. "branch"
  656. ],
  657. "importance": "important"
  658. },
  659. {
  660. "location": {
  661. "physicalLocation": {
  662. "artifactLocation": {
  663. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  664. },
  665. "region": {
  666. "startLine": 1143,
  667. "startColumn": 22
  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/leptonica/src/pdfio2.c"
  678. },
  679. "region": {
  680. "startLine": 1144,
  681. "startColumn": 11
  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/leptonica/src/pdfio2.c"
  692. },
  693. "region": {
  694. "startLine": 1149,
  695. "startColumn": 30
  696. }
  697. },
  698. "message": {
  699. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  700. }
  701. },
  702. "kinds": [
  703. "branch"
  704. ],
  705. "importance": "important"
  706. },
  707. {
  708. "location": {
  709. "physicalLocation": {
  710. "artifactLocation": {
  711. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  712. },
  713. "region": {
  714. "startLine": 1156,
  715. "startColumn": 21
  716. }
  717. },
  718. "message": {
  719. "text": "Diese Verzweigung überspringen (Annahme: \"ascii85flag==1\" ist false)"
  720. }
  721. },
  722. "kinds": [
  723. "branch"
  724. ],
  725. "importance": "important"
  726. },
  727. {
  728. "location": {
  729. "physicalLocation": {
  730. "artifactLocation": {
  731. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  732. },
  733. "region": {
  734. "startLine": 1166,
  735. "startColumn": 9
  736. }
  737. }
  738. },
  739. "importance": "unimportant"
  740. },
  741. {
  742. "location": {
  743. "physicalLocation": {
  744. "artifactLocation": {
  745. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  746. },
  747. "region": {
  748. "startLine": 1167,
  749. "startColumn": 21
  750. }
  751. },
  752. "message": {
  753. "text": "Diese Verzweigung überspringen (Annahme: \"ascii85flag==0\" ist false)"
  754. }
  755. },
  756. "kinds": [
  757. "branch"
  758. ],
  759. "importance": "important"
  760. },
  761. {
  762. "location": {
  763. "physicalLocation": {
  764. "artifactLocation": {
  765. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  766. },
  767. "region": {
  768. "startLine": 1170,
  769. "startColumn": 21
  770. }
  771. }
  772. },
  773. "importance": "unimportant"
  774. },
  775. {
  776. "location": {
  777. "physicalLocation": {
  778. "artifactLocation": {
  779. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  780. },
  781. "region": {
  782. "startLine": 1171,
  783. "startColumn": 23
  784. }
  785. }
  786. },
  787. "importance": "unimportant"
  788. },
  789. {
  790. "location": {
  791. "physicalLocation": {
  792. "artifactLocation": {
  793. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  794. },
  795. "region": {
  796. "startLine": 1171,
  797. "startColumn": 25
  798. }
  799. },
  800. "message": {
  801. "text": "\"nbytes85\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  802. }
  803. },
  804. "kinds": [
  805. "usage"
  806. ],
  807. "importance": "essential"
  808. }
  809. ]
  810. }
  811. ]
  812. }
  813. ]
  814. },
  815. {
  816. "ruleId": "C6031",
  817. "message": {
  818. "text": "Rückgabewert wird ignoriert: \"sscanf\"."
  819. },
  820. "locations": [
  821. {
  822. "physicalLocation": {
  823. "artifactLocation": {
  824. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  825. },
  826. "region": {
  827. "startLine": 2344,
  828. "startColumn": 9,
  829. "endLine": 2344,
  830. "endColumn": 28
  831. }
  832. },
  833. "logicalLocations": [
  834. {
  835. "decoratedName": "parseTrailerPdf",
  836. "kind": "function"
  837. }
  838. ]
  839. }
  840. ]
  841. },
  842. {
  843. "ruleId": "C6031",
  844. "message": {
  845. "text": "Rückgabewert wird ignoriert: \"sscanf\"."
  846. },
  847. "locations": [
  848. {
  849. "physicalLocation": {
  850. "artifactLocation": {
  851. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  852. },
  853. "region": {
  854. "startLine": 2473,
  855. "startColumn": 5,
  856. "endLine": 2473,
  857. "endColumn": 34
  858. }
  859. },
  860. "logicalLocations": [
  861. {
  862. "decoratedName": "substituteObjectNumbers",
  863. "kind": "function"
  864. }
  865. ]
  866. }
  867. ]
  868. },
  869. {
  870. "ruleId": "C6031",
  871. "message": {
  872. "text": "Rückgabewert wird ignoriert: \"sscanf\"."
  873. },
  874. "locations": [
  875. {
  876. "physicalLocation": {
  877. "artifactLocation": {
  878. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  879. },
  880. "region": {
  881. "startLine": 2503,
  882. "startColumn": 9,
  883. "endLine": 2503,
  884. "endColumn": 48
  885. }
  886. },
  887. "logicalLocations": [
  888. {
  889. "decoratedName": "substituteObjectNumbers",
  890. "kind": "function"
  891. }
  892. ]
  893. }
  894. ]
  895. }
  896. ],
  897. "tool": {
  898. "driver": {
  899. "name": "PREfast",
  900. "fullName": "PREfast Code Analysis",
  901. "version": "14.29.30159.0",
  902. "informationUri": "https://aka.ms/cpp/ca"
  903. }
  904. },
  905. "invocations": [
  906. {
  907. "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_e9e0ec9fast -typedil -f ..\\..\\thirdparty\\leptonica\\src\\pdfio2.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\\pdfio2.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",
  908. "executionSuccessful": true
  909. }
  910. ],
  911. "artifacts": [
  912. {
  913. "location": {
  914. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen4.c"
  915. },
  916. "roles": [
  917. "analysisTarget"
  918. ],
  919. "hashes": {
  920. "md5": "3a82f1ac44975b5317cf5d04fa947c01"
  921. }
  922. },
  923. {
  924. "location": {
  925. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/allheaders.h"
  926. },
  927. "hashes": {
  928. "md5": "999d534a4ad60a2b7511196f8e6509e4"
  929. }
  930. },
  931. {
  932. "location": {
  933. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/alltypes.h"
  934. },
  935. "hashes": {
  936. "md5": "a53441277a26b8f0bb926cb17df2dfb7"
  937. }
  938. },
  939. {
  940. "location": {
  941. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/tesseract/endianness.h"
  942. },
  943. "hashes": {
  944. "md5": "c5b34010ae58ee994fb431b8736f6f4c"
  945. }
  946. },
  947. {
  948. "location": {
  949. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/environ.h"
  950. },
  951. "hashes": {
  952. "md5": "f12002e24a0542a8b820943238c03777"
  953. }
  954. },
  955. {
  956. "location": {
  957. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array.h"
  958. },
  959. "hashes": {
  960. "md5": "905c3a077932844148e6ce1a082ad3fd"
  961. }
  962. },
  963. {
  964. "location": {
  965. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.h"
  966. },
  967. "hashes": {
  968. "md5": "9698e12ada03098f0d12a09c12cf6063"
  969. }
  970. },
  971. {
  972. "location": {
  973. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.h"
  974. },
  975. "hashes": {
  976. "md5": "a67f5cea1a1d468a3c082936a3c6ceae"
  977. }
  978. },
  979. {
  980. "location": {
  981. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.h"
  982. },
  983. "hashes": {
  984. "md5": "b4a5a51c54ae3ecf0da810f807a29c83"
  985. }
  986. },
  987. {
  988. "location": {
  989. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.h"
  990. },
  991. "hashes": {
  992. "md5": "c1df1f5c4859fcff277e25e2af485e32"
  993. }
  994. },
  995. {
  996. "location": {
  997. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptra.h"
  998. },
  999. "hashes": {
  1000. "md5": "09b92e82a1ea998e1f7e4023c008cf51"
  1001. }
  1002. },
  1003. {
  1004. "location": {
  1005. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/queue.h"
  1006. },
  1007. "hashes": {
  1008. "md5": "ceded2bcd4bc2c553683c2643f69e6a5"
  1009. }
  1010. },
  1011. {
  1012. "location": {
  1013. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rbtree.h"
  1014. },
  1015. "hashes": {
  1016. "md5": "803860fffdd81a3fc3fff30294c8f8cb"
  1017. }
  1018. },
  1019. {
  1020. "location": {
  1021. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stack.h"
  1022. },
  1023. "hashes": {
  1024. "md5": "0740173ae3e4e7de5f4c6fe821a4f0e7"
  1025. }
  1026. },
  1027. {
  1028. "location": {
  1029. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.h"
  1030. },
  1031. "hashes": {
  1032. "md5": "dcb43ea7a43e1fddf264fe501878db3d"
  1033. }
  1034. },
  1035. {
  1036. "location": {
  1037. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.h"
  1038. },
  1039. "hashes": {
  1040. "md5": "e34a65325b94bfa5d1dca2f9424ca1f0"
  1041. }
  1042. },
  1043. {
  1044. "location": {
  1045. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord.h"
  1046. },
  1047. "hashes": {
  1048. "md5": "90250b263699310ce40909628dbd7758"
  1049. }
  1050. },
  1051. {
  1052. "location": {
  1053. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorfill.h"
  1054. },
  1055. "hashes": {
  1056. "md5": "c9cf5349852bf9054e7f3c5bbafac76e"
  1057. }
  1058. },
  1059. {
  1060. "location": {
  1061. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp.h"
  1062. },
  1063. "hashes": {
  1064. "md5": "493b17891572abea870917ab41bf12c6"
  1065. }
  1066. },
  1067. {
  1068. "location": {
  1069. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.h"
  1070. },
  1071. "hashes": {
  1072. "md5": "55cf40c06fd537d7b8714aaf1f7a0042"
  1073. }
  1074. },
  1075. {
  1076. "location": {
  1077. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/imageio.h"
  1078. },
  1079. "hashes": {
  1080. "md5": "f517e3d907fee1ec4c974fad7dfdb29d"
  1081. }
  1082. },
  1083. {
  1084. "location": {
  1085. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jbclass.h"
  1086. },
  1087. "hashes": {
  1088. "md5": "c922deeb8eb844a7a2260f9c0a709218"
  1089. }
  1090. },
  1091. {
  1092. "location": {
  1093. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morph.h"
  1094. },
  1095. "hashes": {
  1096. "md5": "44855c4ddac6a28583d89947fcdbfdfc"
  1097. }
  1098. },
  1099. {
  1100. "location": {
  1101. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix.h"
  1102. },
  1103. "hashes": {
  1104. "md5": "1fc6f88f9c79b5158469904b66645f7d"
  1105. }
  1106. },
  1107. {
  1108. "location": {
  1109. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/recog.h"
  1110. },
  1111. "hashes": {
  1112. "md5": "f49b37b951f9036fb2dcf726b741db4e"
  1113. }
  1114. },
  1115. {
  1116. "location": {
  1117. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/regutils.h"
  1118. },
  1119. "hashes": {
  1120. "md5": "fe7a3db017220d34590fd29869e5d61c"
  1121. }
  1122. },
  1123. {
  1124. "location": {
  1125. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stringcode.h"
  1126. },
  1127. "hashes": {
  1128. "md5": "94fce55340931aded34d6d7fd60d842e"
  1129. }
  1130. },
  1131. {
  1132. "location": {
  1133. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sudoku.h"
  1134. },
  1135. "hashes": {
  1136. "md5": "fb101a2c192580933be1b8236c2bdc15"
  1137. }
  1138. },
  1139. {
  1140. "location": {
  1141. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/watershed.h"
  1142. },
  1143. "hashes": {
  1144. "md5": "44a71dd892c2fab6459227f7bcc400ee"
  1145. }
  1146. },
  1147. {
  1148. "location": {
  1149. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen3.c"
  1150. },
  1151. "roles": [
  1152. "analysisTarget"
  1153. ],
  1154. "hashes": {
  1155. "md5": "b48614e975c09a03547e759b911f5359"
  1156. }
  1157. },
  1158. {
  1159. "location": {
  1160. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen2.c"
  1161. },
  1162. "roles": [
  1163. "analysisTarget"
  1164. ],
  1165. "hashes": {
  1166. "md5": "8ad6891f2edce3383af6916769c41602"
  1167. }
  1168. },
  1169. {
  1170. "location": {
  1171. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen1.c"
  1172. },
  1173. "roles": [
  1174. "analysisTarget"
  1175. ],
  1176. "hashes": {
  1177. "md5": "b7bcdd2390111aecc3149c70911a9db2"
  1178. }
  1179. },
  1180. {
  1181. "location": {
  1182. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmpiostub.c"
  1183. },
  1184. "roles": [
  1185. "analysisTarget"
  1186. ],
  1187. "hashes": {
  1188. "md5": "fe53e17707c01ad1ef2333752ebc32ee"
  1189. }
  1190. },
  1191. {
  1192. "location": {
  1193. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/bmpio.c"
  1194. },
  1195. "roles": [
  1196. "analysisTarget",
  1197. "resultFile"
  1198. ],
  1199. "hashes": {
  1200. "md5": "367f3081ffba0952522913b49b13bf52"
  1201. }
  1202. },
  1203. {
  1204. "location": {
  1205. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix_internal.h"
  1206. },
  1207. "hashes": {
  1208. "md5": "4dd89382186e6b211b4078679810a19e"
  1209. }
  1210. },
  1211. {
  1212. "location": {
  1213. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmp.h"
  1214. },
  1215. "hashes": {
  1216. "md5": "942e4ba8687e01b1fe5afae65245bd29"
  1217. }
  1218. },
  1219. {
  1220. "location": {
  1221. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.c"
  1222. },
  1223. "roles": [
  1224. "analysisTarget"
  1225. ],
  1226. "hashes": {
  1227. "md5": "2f5d274fa401e05d5d15d9e58a7ed8a5"
  1228. }
  1229. },
  1230. {
  1231. "location": {
  1232. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmfdata.h"
  1233. },
  1234. "hashes": {
  1235. "md5": "4ded82c05fb39404bb67e686cd38b9cf"
  1236. }
  1237. },
  1238. {
  1239. "location": {
  1240. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/blend.c"
  1241. },
  1242. "roles": [
  1243. "analysisTarget",
  1244. "resultFile"
  1245. ],
  1246. "hashes": {
  1247. "md5": "f734d4b17d7b51568aa083f8444a8e7d"
  1248. }
  1249. },
  1250. {
  1251. "location": {
  1252. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binreduce.c"
  1253. },
  1254. "roles": [
  1255. "analysisTarget"
  1256. ],
  1257. "hashes": {
  1258. "md5": "a6bbc62580de9a69daca0ed4a05782ba"
  1259. }
  1260. },
  1261. {
  1262. "location": {
  1263. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binexpand.c"
  1264. },
  1265. "roles": [
  1266. "analysisTarget"
  1267. ],
  1268. "hashes": {
  1269. "md5": "a91e32559d5d0814d80b73b5bc7df24b"
  1270. }
  1271. },
  1272. {
  1273. "location": {
  1274. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binarize.c"
  1275. },
  1276. "roles": [
  1277. "analysisTarget"
  1278. ],
  1279. "hashes": {
  1280. "md5": "02c1761dcc6ab4bf416e6055f672ab07"
  1281. }
  1282. },
  1283. {
  1284. "location": {
  1285. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilinear.c"
  1286. },
  1287. "roles": [
  1288. "analysisTarget"
  1289. ],
  1290. "hashes": {
  1291. "md5": "4a09fe363bcb37df9bb1cd9adbf0c91a"
  1292. }
  1293. },
  1294. {
  1295. "location": {
  1296. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.c"
  1297. },
  1298. "roles": [
  1299. "analysisTarget"
  1300. ],
  1301. "hashes": {
  1302. "md5": "bc1af17cf793ac23886176cb0d23b029"
  1303. }
  1304. },
  1305. {
  1306. "location": {
  1307. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.h"
  1308. },
  1309. "hashes": {
  1310. "md5": "d3078c8d7a38ea07d93a58f8a4982a8d"
  1311. }
  1312. },
  1313. {
  1314. "location": {
  1315. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.c"
  1316. },
  1317. "roles": [
  1318. "analysisTarget"
  1319. ],
  1320. "hashes": {
  1321. "md5": "8fd7f505a82a8b97b29e52618397178d"
  1322. }
  1323. },
  1324. {
  1325. "location": {
  1326. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/baseline.c"
  1327. },
  1328. "roles": [
  1329. "analysisTarget",
  1330. "resultFile"
  1331. ],
  1332. "hashes": {
  1333. "md5": "a4f7bc8214c6a7c7592a2e29d78addc1"
  1334. }
  1335. },
  1336. {
  1337. "location": {
  1338. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.c"
  1339. },
  1340. "roles": [
  1341. "analysisTarget"
  1342. ],
  1343. "hashes": {
  1344. "md5": "137a526c992e6e6683cf2b6ece5a016d"
  1345. }
  1346. },
  1347. {
  1348. "location": {
  1349. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affinecompose.c"
  1350. },
  1351. "roles": [
  1352. "analysisTarget"
  1353. ],
  1354. "hashes": {
  1355. "md5": "020190a9b3f19478dfb5484f3d4fc1e5"
  1356. }
  1357. },
  1358. {
  1359. "location": {
  1360. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affine.c"
  1361. },
  1362. "roles": [
  1363. "analysisTarget"
  1364. ],
  1365. "hashes": {
  1366. "md5": "8cea6c30ebe9cbe0f61f7482e81b4c5c"
  1367. }
  1368. },
  1369. {
  1370. "location": {
  1371. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/adaptmap.c"
  1372. },
  1373. "roles": [
  1374. "analysisTarget"
  1375. ],
  1376. "hashes": {
  1377. "md5": "69c4c232ba768de8b5d9de5e0d23b399"
  1378. }
  1379. },
  1380. {
  1381. "location": {
  1382. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.c"
  1383. },
  1384. "roles": [
  1385. "analysisTarget"
  1386. ],
  1387. "hashes": {
  1388. "md5": "7f73dd56f3cfed6d45d19fd442396938"
  1389. }
  1390. },
  1391. {
  1392. "location": {
  1393. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.h"
  1394. },
  1395. "hashes": {
  1396. "md5": "271e50e32565a028dadd3554dc7d6be9"
  1397. }
  1398. },
  1399. {
  1400. "location": {
  1401. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz.h"
  1402. },
  1403. "hashes": {
  1404. "md5": "c1da725222ed64f4094c94f9ec5fa9d3"
  1405. }
  1406. },
  1407. {
  1408. "location": {
  1409. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/version.h"
  1410. },
  1411. "hashes": {
  1412. "md5": "49b087287cd81a61255c9afad5a04a0e"
  1413. }
  1414. },
  1415. {
  1416. "location": {
  1417. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/config.h"
  1418. },
  1419. "hashes": {
  1420. "md5": "8152555cd3c484684047fd1c533eb1a6"
  1421. }
  1422. },
  1423. {
  1424. "location": {
  1425. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/system.h"
  1426. },
  1427. "hashes": {
  1428. "md5": "90ae89bc0bb247c30f11092380a6bf84"
  1429. }
  1430. },
  1431. {
  1432. "location": {
  1433. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/export.h"
  1434. },
  1435. "hashes": {
  1436. "md5": "9392a759e17aa12d7d4516ab296a9110"
  1437. }
  1438. },
  1439. {
  1440. "location": {
  1441. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/memento.h"
  1442. },
  1443. "hashes": {
  1444. "md5": "09ba15c0fd78518e062db9266c4a1239"
  1445. }
  1446. },
  1447. {
  1448. "location": {
  1449. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/track-usage.h"
  1450. },
  1451. "hashes": {
  1452. "md5": "9c2721d2c03d4b6e071d4c291e4f8eec"
  1453. }
  1454. },
  1455. {
  1456. "location": {
  1457. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/context.h"
  1458. },
  1459. "hashes": {
  1460. "md5": "0a8420b8805e435b64f295b16cab53af"
  1461. }
  1462. },
  1463. {
  1464. "location": {
  1465. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/geometry.h"
  1466. },
  1467. "hashes": {
  1468. "md5": "b90a31a4dca86a00ae7644b0735a3899"
  1469. }
  1470. },
  1471. {
  1472. "location": {
  1473. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output.h"
  1474. },
  1475. "hashes": {
  1476. "md5": "f73558b9d27504499a5a45e8f3a3584a"
  1477. }
  1478. },
  1479. {
  1480. "location": {
  1481. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/buffer.h"
  1482. },
  1483. "hashes": {
  1484. "md5": "6fc8c6b8b9a2692519a1d0e505f71c6e"
  1485. }
  1486. },
  1487. {
  1488. "location": {
  1489. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/string-util.h"
  1490. },
  1491. "hashes": {
  1492. "md5": "4f84321fffde964fbdfa179e97b1fb5b"
  1493. }
  1494. },
  1495. {
  1496. "location": {
  1497. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/stream.h"
  1498. },
  1499. "hashes": {
  1500. "md5": "17262319f59df230360c31bff22506f4"
  1501. }
  1502. },
  1503. {
  1504. "location": {
  1505. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/log.h"
  1506. },
  1507. "hashes": {
  1508. "md5": "fdce0ca431e1f40c09081052f1b739cb"
  1509. }
  1510. },
  1511. {
  1512. "location": {
  1513. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/crypt.h"
  1514. },
  1515. "hashes": {
  1516. "md5": "9ffc8e340c06f2d28aa62b6fcd35dc5d"
  1517. }
  1518. },
  1519. {
  1520. "location": {
  1521. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/getopt.h"
  1522. },
  1523. "hashes": {
  1524. "md5": "e47118058134aec927847ca9dae5d390"
  1525. }
  1526. },
  1527. {
  1528. "location": {
  1529. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/hash.h"
  1530. },
  1531. "hashes": {
  1532. "md5": "d9b655ab558a40c18e24c7cdddeab1fc"
  1533. }
  1534. },
  1535. {
  1536. "location": {
  1537. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pool.h"
  1538. },
  1539. "hashes": {
  1540. "md5": "2f150c59f73344040a7de6455c00529e"
  1541. }
  1542. },
  1543. {
  1544. "location": {
  1545. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/tree.h"
  1546. },
  1547. "hashes": {
  1548. "md5": "66441b22b31d2cc979eb50d828de8d89"
  1549. }
  1550. },
  1551. {
  1552. "location": {
  1553. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bidi.h"
  1554. },
  1555. "hashes": {
  1556. "md5": "b3f22e9d6b6250f2a9dfd4c1620af41d"
  1557. }
  1558. },
  1559. {
  1560. "location": {
  1561. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/xml.h"
  1562. },
  1563. "hashes": {
  1564. "md5": "9e6cf72f1f3c757d8956f19631d1f942"
  1565. }
  1566. },
  1567. {
  1568. "location": {
  1569. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/archive.h"
  1570. },
  1571. "hashes": {
  1572. "md5": "fe3a9fa4f6093e521afe5b0d4a214e89"
  1573. }
  1574. },
  1575. {
  1576. "location": {
  1577. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/json.h"
  1578. },
  1579. "hashes": {
  1580. "md5": "1ccd7f1e2c3cf9db156761b2341941bb"
  1581. }
  1582. },
  1583. {
  1584. "location": {
  1585. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compress.h"
  1586. },
  1587. "hashes": {
  1588. "md5": "870b86535307b1bcf48a05cc86bac4f6"
  1589. }
  1590. },
  1591. {
  1592. "location": {
  1593. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pixmap.h"
  1594. },
  1595. "hashes": {
  1596. "md5": "4a2994ca7e320d46c91af9462864e472"
  1597. }
  1598. },
  1599. {
  1600. "location": {
  1601. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/store.h"
  1602. },
  1603. "hashes": {
  1604. "md5": "613e60235eba9e2c0fe6735fbcbf444d"
  1605. }
  1606. },
  1607. {
  1608. "location": {
  1609. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/separation.h"
  1610. },
  1611. "hashes": {
  1612. "md5": "948f2a79178edd5a86cab9b357cc8f84"
  1613. }
  1614. },
  1615. {
  1616. "location": {
  1617. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/color.h"
  1618. },
  1619. "hashes": {
  1620. "md5": "c394579670ed653192ccdf07cc810543"
  1621. }
  1622. },
  1623. {
  1624. "location": {
  1625. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compressed-buffer.h"
  1626. },
  1627. "hashes": {
  1628. "md5": "f0ad50536d7884e3d221498388a145a1"
  1629. }
  1630. },
  1631. {
  1632. "location": {
  1633. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/filter.h"
  1634. },
  1635. "hashes": {
  1636. "md5": "a20437fde476b45123005b54567b8b3c"
  1637. }
  1638. },
  1639. {
  1640. "location": {
  1641. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap.h"
  1642. },
  1643. "hashes": {
  1644. "md5": "1cbe01acfade2baf416ab5be1bd1907e"
  1645. }
  1646. },
  1647. {
  1648. "location": {
  1649. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap-imp.h"
  1650. },
  1651. "hashes": {
  1652. "md5": "9923f50e47c46bd4e02747da6de32946"
  1653. }
  1654. },
  1655. {
  1656. "location": {
  1657. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/image.h"
  1658. },
  1659. "hashes": {
  1660. "md5": "a987413ff35bef8ce2048369564be0e0"
  1661. }
  1662. },
  1663. {
  1664. "location": {
  1665. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bitmap.h"
  1666. },
  1667. "hashes": {
  1668. "md5": "0e6ee78ac3a456106ea3ddca63ef5e35"
  1669. }
  1670. },
  1671. {
  1672. "location": {
  1673. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/shade.h"
  1674. },
  1675. "hashes": {
  1676. "md5": "c06b062bd0326fa40b071527b257ae24"
  1677. }
  1678. },
  1679. {
  1680. "location": {
  1681. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/font.h"
  1682. },
  1683. "hashes": {
  1684. "md5": "b667092834a21c0abe97b2817ace34a7"
  1685. }
  1686. },
  1687. {
  1688. "location": {
  1689. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/path.h"
  1690. },
  1691. "hashes": {
  1692. "md5": "200da6c866aa0a7faec7f24f176e47e9"
  1693. }
  1694. },
  1695. {
  1696. "location": {
  1697. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/text.h"
  1698. },
  1699. "hashes": {
  1700. "md5": "d8f8e0890cc682b0974ec3f779260f6e"
  1701. }
  1702. },
  1703. {
  1704. "location": {
  1705. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph.h"
  1706. },
  1707. "hashes": {
  1708. "md5": "74fdb3bee7c6f25df43323008fcdf60a"
  1709. }
  1710. },
  1711. {
  1712. "location": {
  1713. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/device.h"
  1714. },
  1715. "hashes": {
  1716. "md5": "ba44b7292a72479dfe60b62352e57fd5"
  1717. }
  1718. },
  1719. {
  1720. "location": {
  1721. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/display-list.h"
  1722. },
  1723. "hashes": {
  1724. "md5": "4944d19bf380f14ccda5ced45ab04dcc"
  1725. }
  1726. },
  1727. {
  1728. "location": {
  1729. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/structured-text.h"
  1730. },
  1731. "hashes": {
  1732. "md5": "fdd5507292d57da0c3c2ee591f5f0d08"
  1733. }
  1734. },
  1735. {
  1736. "location": {
  1737. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/types.h"
  1738. },
  1739. "hashes": {
  1740. "md5": "385688b131d3b981c11fefca1c6bd08f"
  1741. }
  1742. },
  1743. {
  1744. "location": {
  1745. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/transition.h"
  1746. },
  1747. "hashes": {
  1748. "md5": "45a1a3da16cfa7a1135ed97b151d59e5"
  1749. }
  1750. },
  1751. {
  1752. "location": {
  1753. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph-cache.h"
  1754. },
  1755. "hashes": {
  1756. "md5": "f8a51df4e57ec830f97cefefd04beb21"
  1757. }
  1758. },
  1759. {
  1760. "location": {
  1761. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/link.h"
  1762. },
  1763. "hashes": {
  1764. "md5": "e2beb74537ffa880d751627856f4ec2e"
  1765. }
  1766. },
  1767. {
  1768. "location": {
  1769. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/outline.h"
  1770. },
  1771. "hashes": {
  1772. "md5": "a4b090458246a9412f1822e8f69861e5"
  1773. }
  1774. },
  1775. {
  1776. "location": {
  1777. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/document.h"
  1778. },
  1779. "hashes": {
  1780. "md5": "d5dd17e54ecd7a0c4c420b7fba8bbbb8"
  1781. }
  1782. },
  1783. {
  1784. "location": {
  1785. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/util.h"
  1786. },
  1787. "hashes": {
  1788. "md5": "b52379b9e022798f7ffeb183e593355b"
  1789. }
  1790. },
  1791. {
  1792. "location": {
  1793. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/writer.h"
  1794. },
  1795. "hashes": {
  1796. "md5": "8f22433f8330cf7094af3c2c0221d1aa"
  1797. }
  1798. },
  1799. {
  1800. "location": {
  1801. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/band-writer.h"
  1802. },
  1803. "hashes": {
  1804. "md5": "cce70daf29f5059d81d3004bac3a529b"
  1805. }
  1806. },
  1807. {
  1808. "location": {
  1809. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/write-pixmap.h"
  1810. },
  1811. "hashes": {
  1812. "md5": "55a92a6277d51e8193cb9d68dbc04555"
  1813. }
  1814. },
  1815. {
  1816. "location": {
  1817. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output-svg.h"
  1818. },
  1819. "hashes": {
  1820. "md5": "562415573a8921b26596771d6c4c5c67"
  1821. }
  1822. },
  1823. {
  1824. "location": {
  1825. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story.h"
  1826. },
  1827. "hashes": {
  1828. "md5": "103650ee4814b1f96618672e45b766d4"
  1829. }
  1830. },
  1831. {
  1832. "location": {
  1833. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story-writer.h"
  1834. },
  1835. "hashes": {
  1836. "md5": "aaafb6cf4f48ade004e1d15d06eaffe7"
  1837. }
  1838. },
  1839. {
  1840. "location": {
  1841. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/deskew.h"
  1842. },
  1843. "hashes": {
  1844. "md5": "9599a8121baecccfd203d91c95561903"
  1845. }
  1846. },
  1847. {
  1848. "location": {
  1849. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/barcode.h"
  1850. },
  1851. "hashes": {
  1852. "md5": "58fc28d74fa337724ff70a29778ac6ed"
  1853. }
  1854. },
  1855. {
  1856. "location": {
  1857. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convertfiles.c"
  1858. },
  1859. "roles": [
  1860. "analysisTarget"
  1861. ],
  1862. "hashes": {
  1863. "md5": "724f5d1e2f686dc7a5f62ee87cd4b7c0"
  1864. }
  1865. },
  1866. {
  1867. "location": {
  1868. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/conncomp.c"
  1869. },
  1870. "roles": [
  1871. "analysisTarget"
  1872. ],
  1873. "hashes": {
  1874. "md5": "439795e422d51c02d86e41c5f2612cca"
  1875. }
  1876. },
  1877. {
  1878. "location": {
  1879. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/compare.c"
  1880. },
  1881. "roles": [
  1882. "analysisTarget"
  1883. ],
  1884. "hashes": {
  1885. "md5": "32a03abbd3ffed661bfab2965b017a8b"
  1886. }
  1887. },
  1888. {
  1889. "location": {
  1890. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorspace.c"
  1891. },
  1892. "roles": [
  1893. "analysisTarget"
  1894. ],
  1895. "hashes": {
  1896. "md5": "4f9001939678a369e7c84460dff9d21b"
  1897. }
  1898. },
  1899. {
  1900. "location": {
  1901. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorseg.c"
  1902. },
  1903. "roles": [
  1904. "analysisTarget",
  1905. "resultFile"
  1906. ],
  1907. "hashes": {
  1908. "md5": "1ab66c018aa504e6fee2bdca55a3da21"
  1909. }
  1910. },
  1911. {
  1912. "location": {
  1913. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorquant2.c"
  1914. },
  1915. "roles": [
  1916. "analysisTarget",
  1917. "resultFile"
  1918. ],
  1919. "hashes": {
  1920. "md5": "08cd6523f246d256d2e5b719eb667fd9"
  1921. }
  1922. },
  1923. {
  1924. "location": {
  1925. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorquant1.c"
  1926. },
  1927. "roles": [
  1928. "analysisTarget"
  1929. ],
  1930. "hashes": {
  1931. "md5": "f40f68bd9d4f0559471f4519d089341c"
  1932. }
  1933. },
  1934. {
  1935. "location": {
  1936. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormorph.c"
  1937. },
  1938. "roles": [
  1939. "analysisTarget"
  1940. ],
  1941. "hashes": {
  1942. "md5": "c7d2b1c8606d5cdc3213275c61eefc08"
  1943. }
  1944. },
  1945. {
  1946. "location": {
  1947. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormap.c"
  1948. },
  1949. "roles": [
  1950. "analysisTarget"
  1951. ],
  1952. "hashes": {
  1953. "md5": "07d58362026f2ee8c4c94a12a850cf55"
  1954. }
  1955. },
  1956. {
  1957. "location": {
  1958. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/coloring.c"
  1959. },
  1960. "roles": [
  1961. "analysisTarget"
  1962. ],
  1963. "hashes": {
  1964. "md5": "0b2cd914abafa50c0a5d70fe0d70bed0"
  1965. }
  1966. },
  1967. {
  1968. "location": {
  1969. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorcontent.c"
  1970. },
  1971. "roles": [
  1972. "analysisTarget"
  1973. ],
  1974. "hashes": {
  1975. "md5": "f323d957cfd0b4804277e990bddc1052"
  1976. }
  1977. },
  1978. {
  1979. "location": {
  1980. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/classapp.c"
  1981. },
  1982. "roles": [
  1983. "analysisTarget"
  1984. ],
  1985. "hashes": {
  1986. "md5": "031c0fa9ce910dbe883833475136f167"
  1987. }
  1988. },
  1989. {
  1990. "location": {
  1991. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1992. },
  1993. "roles": [
  1994. "analysisTarget",
  1995. "resultFile"
  1996. ],
  1997. "hashes": {
  1998. "md5": "698cbb131be6752bb74a9863349ba9f7"
  1999. }
  2000. },
  2001. {
  2002. "location": {
  2003. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord_internal.h"
  2004. },
  2005. "hashes": {
  2006. "md5": "b4ffaa4ab3329f45a74769526364a5bd"
  2007. }
  2008. },
  2009. {
  2010. "location": {
  2011. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bytearray.c"
  2012. },
  2013. "roles": [
  2014. "analysisTarget"
  2015. ],
  2016. "hashes": {
  2017. "md5": "f479426c83e521920ba5ef2a47f9eeea"
  2018. }
  2019. },
  2020. {
  2021. "location": {
  2022. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array_internal.h"
  2023. },
  2024. "hashes": {
  2025. "md5": "47169f561e914a3f80dd1165d0cc9ac5"
  2026. }
  2027. },
  2028. {
  2029. "location": {
  2030. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc5.c"
  2031. },
  2032. "roles": [
  2033. "analysisTarget"
  2034. ],
  2035. "hashes": {
  2036. "md5": "3bd669a71b8039fe8dc1465c6d9451ea"
  2037. }
  2038. },
  2039. {
  2040. "location": {
  2041. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc4.c"
  2042. },
  2043. "roles": [
  2044. "analysisTarget"
  2045. ],
  2046. "hashes": {
  2047. "md5": "4350db99f137393092bb9e127c545533"
  2048. }
  2049. },
  2050. {
  2051. "location": {
  2052. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc3.c"
  2053. },
  2054. "roles": [
  2055. "analysisTarget"
  2056. ],
  2057. "hashes": {
  2058. "md5": "5ffe93f9dac1ac164c76c827d6b99c2b"
  2059. }
  2060. },
  2061. {
  2062. "location": {
  2063. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/boxfunc2.c"
  2064. },
  2065. "roles": [
  2066. "analysisTarget",
  2067. "resultFile"
  2068. ],
  2069. "hashes": {
  2070. "md5": "06017e461354b622a898e964824feb0a"
  2071. }
  2072. },
  2073. {
  2074. "location": {
  2075. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc1.c"
  2076. },
  2077. "roles": [
  2078. "analysisTarget"
  2079. ],
  2080. "hashes": {
  2081. "md5": "53c0cadfd70352d07c7059cb11b8996d"
  2082. }
  2083. },
  2084. {
  2085. "location": {
  2086. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxbasic.c"
  2087. },
  2088. "roles": [
  2089. "analysisTarget"
  2090. ],
  2091. "hashes": {
  2092. "md5": "9499af84bce2d2cec53f010406b849d0"
  2093. }
  2094. },
  2095. {
  2096. "location": {
  2097. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fpix1.c"
  2098. },
  2099. "roles": [
  2100. "analysisTarget"
  2101. ],
  2102. "hashes": {
  2103. "md5": "32f9040600f84cde037e4633e458e61e"
  2104. }
  2105. },
  2106. {
  2107. "location": {
  2108. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgenlow.1.c"
  2109. },
  2110. "roles": [
  2111. "analysisTarget"
  2112. ],
  2113. "hashes": {
  2114. "md5": "c2e6003fbf822c8846ffdfa4e00d3d97"
  2115. }
  2116. },
  2117. {
  2118. "location": {
  2119. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgen.1.c"
  2120. },
  2121. "roles": [
  2122. "analysisTarget"
  2123. ],
  2124. "hashes": {
  2125. "md5": "1420b32f53bc6448bc82d942625ede55"
  2126. }
  2127. },
  2128. {
  2129. "location": {
  2130. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fmorphauto.c"
  2131. },
  2132. "roles": [
  2133. "analysisTarget",
  2134. "resultFile"
  2135. ],
  2136. "hashes": {
  2137. "md5": "4960763af570d20b74f0b86ca5b79e17"
  2138. }
  2139. },
  2140. {
  2141. "location": {
  2142. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fhmtgenlow.1.c"
  2143. },
  2144. "roles": [
  2145. "analysisTarget"
  2146. ],
  2147. "hashes": {
  2148. "md5": "580542b03b1dc496eb55441227c01c4d"
  2149. }
  2150. },
  2151. {
  2152. "location": {
  2153. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fhmtauto.c"
  2154. },
  2155. "roles": [
  2156. "analysisTarget",
  2157. "resultFile"
  2158. ],
  2159. "hashes": {
  2160. "md5": "407f110417e1da69577f401016c308fa"
  2161. }
  2162. },
  2163. {
  2164. "location": {
  2165. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/enhance.c"
  2166. },
  2167. "roles": [
  2168. "analysisTarget"
  2169. ],
  2170. "hashes": {
  2171. "md5": "1fad11e14f7a7def3488fee226869f47"
  2172. }
  2173. },
  2174. {
  2175. "location": {
  2176. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/encoding.c"
  2177. },
  2178. "roles": [
  2179. "analysisTarget"
  2180. ],
  2181. "hashes": {
  2182. "md5": "663891ec7f132072632069f144467438"
  2183. }
  2184. },
  2185. {
  2186. "location": {
  2187. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/edge.c"
  2188. },
  2189. "roles": [
  2190. "analysisTarget"
  2191. ],
  2192. "hashes": {
  2193. "md5": "16a6b93b118ca74db85d082d2b5dbc30"
  2194. }
  2195. },
  2196. {
  2197. "location": {
  2198. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomblow.2.c"
  2199. },
  2200. "roles": [
  2201. "analysisTarget"
  2202. ],
  2203. "hashes": {
  2204. "md5": "0788c556bc256df2d62891852f16e66e"
  2205. }
  2206. },
  2207. {
  2208. "location": {
  2209. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomb.2.c"
  2210. },
  2211. "roles": [
  2212. "analysisTarget"
  2213. ],
  2214. "hashes": {
  2215. "md5": "ec998985a6538576f25814e7a54b6bc1"
  2216. }
  2217. },
  2218. {
  2219. "location": {
  2220. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnahash.c"
  2221. },
  2222. "roles": [
  2223. "analysisTarget"
  2224. ],
  2225. "hashes": {
  2226. "md5": "a104970312798bb28670ec4b6f1306e5"
  2227. }
  2228. },
  2229. {
  2230. "location": {
  2231. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnafunc1.c"
  2232. },
  2233. "roles": [
  2234. "analysisTarget"
  2235. ],
  2236. "hashes": {
  2237. "md5": "63832a12bd0d51e38cb8fe26df8036ad"
  2238. }
  2239. },
  2240. {
  2241. "location": {
  2242. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnabasic.c"
  2243. },
  2244. "roles": [
  2245. "analysisTarget"
  2246. ],
  2247. "hashes": {
  2248. "md5": "2e8bddfb98a62a2819700b70e3af28da"
  2249. }
  2250. },
  2251. {
  2252. "location": {
  2253. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp4.c"
  2254. },
  2255. "roles": [
  2256. "analysisTarget"
  2257. ],
  2258. "hashes": {
  2259. "md5": "2e5e5727028744821d98f4088779de2a"
  2260. }
  2261. },
  2262. {
  2263. "location": {
  2264. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp3.c"
  2265. },
  2266. "roles": [
  2267. "analysisTarget"
  2268. ],
  2269. "hashes": {
  2270. "md5": "d509becfa83c46484ab01c6acedf06d4"
  2271. }
  2272. },
  2273. {
  2274. "location": {
  2275. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp2.c"
  2276. },
  2277. "roles": [
  2278. "analysisTarget",
  2279. "resultFile"
  2280. ],
  2281. "hashes": {
  2282. "md5": "cfd9a80722d868d9374f4813abab8e96"
  2283. }
  2284. },
  2285. {
  2286. "location": {
  2287. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp1.c"
  2288. },
  2289. "roles": [
  2290. "analysisTarget",
  2291. "resultFile"
  2292. ],
  2293. "hashes": {
  2294. "md5": "674d27d0b21e55fd2d33eeb0ef2b67c3"
  2295. }
  2296. },
  2297. {
  2298. "location": {
  2299. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/correlscore.c"
  2300. },
  2301. "roles": [
  2302. "analysisTarget",
  2303. "resultFile"
  2304. ],
  2305. "hashes": {
  2306. "md5": "4c7a50e236fdc4014526b6de1876117e"
  2307. }
  2308. },
  2309. {
  2310. "location": {
  2311. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convolve.c"
  2312. },
  2313. "roles": [
  2314. "analysisTarget"
  2315. ],
  2316. "hashes": {
  2317. "md5": "3a0ad6a7c7f1268eb3616f2c805cdd1f"
  2318. }
  2319. },
  2320. {
  2321. "location": {
  2322. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morphdwa.c"
  2323. },
  2324. "roles": [
  2325. "analysisTarget",
  2326. "resultFile"
  2327. ],
  2328. "hashes": {
  2329. "md5": "3e4d53bbbcc92987244a35b83b63ab42"
  2330. }
  2331. },
  2332. {
  2333. "location": {
  2334. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morphapp.c"
  2335. },
  2336. "roles": [
  2337. "analysisTarget"
  2338. ],
  2339. "hashes": {
  2340. "md5": "eb8705290a96113560ce5f90dd88b5ce"
  2341. }
  2342. },
  2343. {
  2344. "location": {
  2345. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morph.c"
  2346. },
  2347. "roles": [
  2348. "analysisTarget",
  2349. "resultFile"
  2350. ],
  2351. "hashes": {
  2352. "md5": "69ef8f87618f68b78657248e445f7f09"
  2353. }
  2354. },
  2355. {
  2356. "location": {
  2357. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/map.c"
  2358. },
  2359. "roles": [
  2360. "analysisTarget"
  2361. ],
  2362. "hashes": {
  2363. "md5": "91fe339284bec6b1ee444f7214833ee9"
  2364. }
  2365. },
  2366. {
  2367. "location": {
  2368. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.c"
  2369. },
  2370. "roles": [
  2371. "analysisTarget"
  2372. ],
  2373. "hashes": {
  2374. "md5": "b478579934145f8267478dbf99474df2"
  2375. }
  2376. },
  2377. {
  2378. "location": {
  2379. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/libversions.c"
  2380. },
  2381. "roles": [
  2382. "analysisTarget"
  2383. ],
  2384. "hashes": {
  2385. "md5": "cb12910c25dc7195c3ba4303f814b006"
  2386. }
  2387. },
  2388. {
  2389. "location": {
  2390. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/kernel.c"
  2391. },
  2392. "roles": [
  2393. "analysisTarget"
  2394. ],
  2395. "hashes": {
  2396. "md5": "3129b905f075abf05742d64d347b3c61"
  2397. }
  2398. },
  2399. {
  2400. "location": {
  2401. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jpegiostub.c"
  2402. },
  2403. "roles": [
  2404. "analysisTarget"
  2405. ],
  2406. "hashes": {
  2407. "md5": "4b13eb283323dc6332edae19fd54887a"
  2408. }
  2409. },
  2410. {
  2411. "location": {
  2412. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kiostub.c"
  2413. },
  2414. "roles": [
  2415. "analysisTarget"
  2416. ],
  2417. "hashes": {
  2418. "md5": "d73421f4dd5a240effeab0b7098d9e53"
  2419. }
  2420. },
  2421. {
  2422. "location": {
  2423. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheaderstub.c"
  2424. },
  2425. "roles": [
  2426. "analysisTarget"
  2427. ],
  2428. "hashes": {
  2429. "md5": "0a1cc9e8c5f3d046a2a70703aeb6eff6"
  2430. }
  2431. },
  2432. {
  2433. "location": {
  2434. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheader.c"
  2435. },
  2436. "roles": [
  2437. "analysisTarget"
  2438. ],
  2439. "hashes": {
  2440. "md5": "31483ab4eab5d6a17be23b35406183ec"
  2441. }
  2442. },
  2443. {
  2444. "location": {
  2445. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/jbclass.c"
  2446. },
  2447. "roles": [
  2448. "analysisTarget",
  2449. "resultFile"
  2450. ],
  2451. "hashes": {
  2452. "md5": "39faac93361acf87962e489b12297a8f"
  2453. }
  2454. },
  2455. {
  2456. "location": {
  2457. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.c"
  2458. },
  2459. "roles": [
  2460. "analysisTarget"
  2461. ],
  2462. "hashes": {
  2463. "md5": "9eae6bc65de71970e4bb1436e697fa78"
  2464. }
  2465. },
  2466. {
  2467. "location": {
  2468. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.c"
  2469. },
  2470. "roles": [
  2471. "analysisTarget"
  2472. ],
  2473. "hashes": {
  2474. "md5": "4bd0c129d0c3017ecf74c97f300ff6a4"
  2475. }
  2476. },
  2477. {
  2478. "location": {
  2479. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/grayquant.c"
  2480. },
  2481. "roles": [
  2482. "analysisTarget"
  2483. ],
  2484. "hashes": {
  2485. "md5": "675b975e5cf01bb67bb9bfd141c95112"
  2486. }
  2487. },
  2488. {
  2489. "location": {
  2490. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/graymorph.c"
  2491. },
  2492. "roles": [
  2493. "analysisTarget"
  2494. ],
  2495. "hashes": {
  2496. "md5": "9ff2cc571cafe6e3fb33ec3d558ffd77"
  2497. }
  2498. },
  2499. {
  2500. "location": {
  2501. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  2502. },
  2503. "roles": [
  2504. "analysisTarget",
  2505. "resultFile"
  2506. ],
  2507. "hashes": {
  2508. "md5": "b05809f207b552b8cc275685e53bb0f0"
  2509. }
  2510. },
  2511. {
  2512. "location": {
  2513. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.c"
  2514. },
  2515. "roles": [
  2516. "analysisTarget"
  2517. ],
  2518. "hashes": {
  2519. "md5": "75946f43c0e93cd361e03ef6e001a56c"
  2520. }
  2521. },
  2522. {
  2523. "location": {
  2524. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gifiostub.c"
  2525. },
  2526. "roles": [
  2527. "analysisTarget"
  2528. ],
  2529. "hashes": {
  2530. "md5": "4d08ccc55f0f2be4462075c3293604da"
  2531. }
  2532. },
  2533. {
  2534. "location": {
  2535. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fpix2.c"
  2536. },
  2537. "roles": [
  2538. "analysisTarget"
  2539. ],
  2540. "hashes": {
  2541. "md5": "1c2d45e72c879edecb32c0592a5f5791"
  2542. }
  2543. },
  2544. {
  2545. "location": {
  2546. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixafunc1.c"
  2547. },
  2548. "roles": [
  2549. "analysisTarget"
  2550. ],
  2551. "hashes": {
  2552. "md5": "4d52abb3948289851f749c429ed3192e"
  2553. }
  2554. },
  2555. {
  2556. "location": {
  2557. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixacc.c"
  2558. },
  2559. "roles": [
  2560. "analysisTarget"
  2561. ],
  2562. "hashes": {
  2563. "md5": "216ab57597611bb9aeb36b806a144645"
  2564. }
  2565. },
  2566. {
  2567. "location": {
  2568. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixabasic.c"
  2569. },
  2570. "roles": [
  2571. "analysisTarget"
  2572. ],
  2573. "hashes": {
  2574. "md5": "58a0ae2bad52778df9263722467a7c44"
  2575. }
  2576. },
  2577. {
  2578. "location": {
  2579. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix5.c"
  2580. },
  2581. "roles": [
  2582. "analysisTarget"
  2583. ],
  2584. "hashes": {
  2585. "md5": "dbaac99b65da51175877c1c29a30365e"
  2586. }
  2587. },
  2588. {
  2589. "location": {
  2590. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix4.c"
  2591. },
  2592. "roles": [
  2593. "analysisTarget"
  2594. ],
  2595. "hashes": {
  2596. "md5": "81c924dd928d7393fe53ff31b97e9ea0"
  2597. }
  2598. },
  2599. {
  2600. "location": {
  2601. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix3.c"
  2602. },
  2603. "roles": [
  2604. "analysisTarget"
  2605. ],
  2606. "hashes": {
  2607. "md5": "c01693b80af9e66439a7627da93496f8"
  2608. }
  2609. },
  2610. {
  2611. "location": {
  2612. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix2.c"
  2613. },
  2614. "roles": [
  2615. "analysisTarget"
  2616. ],
  2617. "hashes": {
  2618. "md5": "46735917afea0b54616f9a66e3690bc3"
  2619. }
  2620. },
  2621. {
  2622. "location": {
  2623. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix1.c"
  2624. },
  2625. "roles": [
  2626. "analysisTarget"
  2627. ],
  2628. "hashes": {
  2629. "md5": "0676ad9f55879ba797211bacbc8abf29"
  2630. }
  2631. },
  2632. {
  2633. "location": {
  2634. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio2stub.c"
  2635. },
  2636. "roles": [
  2637. "analysisTarget"
  2638. ],
  2639. "hashes": {
  2640. "md5": "e76c0edba8cc9774528c9298e480aab9"
  2641. }
  2642. },
  2643. {
  2644. "location": {
  2645. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  2646. },
  2647. "roles": [
  2648. "analysisTarget",
  2649. "resultFile"
  2650. ],
  2651. "hashes": {
  2652. "md5": "48ae9eaaa0a93804838828f3c0615d2f"
  2653. }
  2654. }
  2655. ]
  2656. }
  2657. ]
  2658. }