hb-ot-map.nativecodeanalysis.sarif 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964
  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": "C26439",
  9. "message": {
  10. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  11. },
  12. "locations": [
  13. {
  14. "physicalLocation": {
  15. "artifactLocation": {
  16. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  17. },
  18. "region": {
  19. "startLine": 445,
  20. "startColumn": 3,
  21. "endLine": 445,
  22. "endColumn": 3
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "??0hb_map_t@@QEAA@$$QEAU0@@Z",
  28. "kind": "function"
  29. }
  30. ]
  31. }
  32. ]
  33. },
  34. {
  35. "ruleId": "C26439",
  36. "message": {
  37. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  38. },
  39. "locations": [
  40. {
  41. "physicalLocation": {
  42. "artifactLocation": {
  43. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  44. },
  45. "region": {
  46. "startLine": 42,
  47. "startColumn": 3,
  48. "endLine": 42,
  49. "endColumn": 3
  50. }
  51. },
  52. "logicalLocations": [
  53. {
  54. "decoratedName": "??0hb_bit_set_t@@QEAA@$$QEAU0@@Z",
  55. "kind": "function"
  56. }
  57. ]
  58. }
  59. ]
  60. },
  61. {
  62. "ruleId": "C26439",
  63. "message": {
  64. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  65. },
  66. "locations": [
  67. {
  68. "physicalLocation": {
  69. "artifactLocation": {
  70. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  71. },
  72. "region": {
  73. "startLine": 44,
  74. "startColumn": 17,
  75. "endLine": 44,
  76. "endColumn": 17
  77. }
  78. },
  79. "logicalLocations": [
  80. {
  81. "decoratedName": "??4hb_bit_set_t@@QEAAAEAU0@$$QEAU0@@Z",
  82. "kind": "function"
  83. }
  84. ]
  85. }
  86. ]
  87. },
  88. {
  89. "ruleId": "C26820",
  90. "message": {
  91. "text": "Zuweisung nach Wert, obwohl \"const-reference\" ausreichen würde. Verwenden Sie stattdessen \"const auto&\" (p.9)."
  92. },
  93. "locations": [
  94. {
  95. "physicalLocation": {
  96. "artifactLocation": {
  97. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  98. },
  99. "region": {
  100. "startLine": 400,
  101. "startColumn": 12,
  102. "endLine": 400,
  103. "endColumn": 26
  104. }
  105. },
  106. "logicalLocations": [
  107. {
  108. "decoratedName": "?is_subset@hb_bit_set_t@@QEBA_NAEBU1@@Z",
  109. "kind": "function"
  110. }
  111. ]
  112. }
  113. ]
  114. },
  115. {
  116. "ruleId": "C26820",
  117. "message": {
  118. "text": "Zuweisung nach Wert, obwohl \"const-reference\" ausreichen würde. Verwenden Sie stattdessen \"const auto&\" (p.9)."
  119. },
  120. "locations": [
  121. {
  122. "physicalLocation": {
  123. "artifactLocation": {
  124. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  125. },
  126. "region": {
  127. "startLine": 401,
  128. "startColumn": 12,
  129. "endLine": 401,
  130. "endColumn": 37
  131. }
  132. },
  133. "logicalLocations": [
  134. {
  135. "decoratedName": "?is_subset@hb_bit_set_t@@QEBA_NAEBU1@@Z",
  136. "kind": "function"
  137. }
  138. ]
  139. }
  140. ]
  141. },
  142. {
  143. "ruleId": "C26439",
  144. "message": {
  145. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  146. },
  147. "locations": [
  148. {
  149. "physicalLocation": {
  150. "artifactLocation": {
  151. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set-invertible.hh"
  152. },
  153. "region": {
  154. "startLine": 42,
  155. "startColumn": 3,
  156. "endLine": 42,
  157. "endColumn": 3
  158. }
  159. },
  160. "logicalLocations": [
  161. {
  162. "decoratedName": "??0hb_bit_set_invertible_t@@QEAA@$$QEAU0@@Z",
  163. "kind": "function"
  164. }
  165. ]
  166. }
  167. ]
  168. },
  169. {
  170. "ruleId": "C26439",
  171. "message": {
  172. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  173. },
  174. "locations": [
  175. {
  176. "physicalLocation": {
  177. "artifactLocation": {
  178. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set-invertible.hh"
  179. },
  180. "region": {
  181. "startLine": 44,
  182. "startColumn": 28,
  183. "endLine": 44,
  184. "endColumn": 28
  185. }
  186. },
  187. "logicalLocations": [
  188. {
  189. "decoratedName": "??4hb_bit_set_invertible_t@@QEAAAEAU0@$$QEAU0@@Z",
  190. "kind": "function"
  191. }
  192. ]
  193. }
  194. ]
  195. },
  196. {
  197. "ruleId": "C26439",
  198. "message": {
  199. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  200. },
  201. "locations": [
  202. {
  203. "physicalLocation": {
  204. "artifactLocation": {
  205. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  206. },
  207. "region": {
  208. "startLine": 166,
  209. "startColumn": 3,
  210. "endLine": 166,
  211. "endColumn": 3
  212. }
  213. },
  214. "logicalLocations": [
  215. {
  216. "decoratedName": "??0hb_set_t@@QEAA@$$QEAU0@@Z",
  217. "kind": "function"
  218. }
  219. ]
  220. }
  221. ]
  222. },
  223. {
  224. "ruleId": "C26495",
  225. "message": {
  226. "text": "Die Variable \"hb_subset_plan_t::flags\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  227. },
  228. "locations": [
  229. {
  230. "physicalLocation": {
  231. "artifactLocation": {
  232. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  233. },
  234. "region": {
  235. "startLine": 46,
  236. "startColumn": 3,
  237. "endLine": 46,
  238. "endColumn": 3
  239. }
  240. },
  241. "logicalLocations": [
  242. {
  243. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  244. "kind": "function"
  245. }
  246. ]
  247. }
  248. ],
  249. "properties": {
  250. "targetSymbol": "hb_subset_plan_t::flags"
  251. }
  252. },
  253. {
  254. "ruleId": "C26495",
  255. "message": {
  256. "text": "Die Variable \"hb_subset_plan_t::successful\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  257. },
  258. "locations": [
  259. {
  260. "physicalLocation": {
  261. "artifactLocation": {
  262. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  263. },
  264. "region": {
  265. "startLine": 46,
  266. "startColumn": 3,
  267. "endLine": 46,
  268. "endColumn": 3
  269. }
  270. },
  271. "logicalLocations": [
  272. {
  273. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  274. "kind": "function"
  275. }
  276. ]
  277. }
  278. ],
  279. "properties": {
  280. "targetSymbol": "hb_subset_plan_t::successful"
  281. }
  282. },
  283. {
  284. "ruleId": "C26495",
  285. "message": {
  286. "text": "Die Variable \"hb_subset_plan_t::unicodes\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  287. },
  288. "locations": [
  289. {
  290. "physicalLocation": {
  291. "artifactLocation": {
  292. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  293. },
  294. "region": {
  295. "startLine": 46,
  296. "startColumn": 3,
  297. "endLine": 46,
  298. "endColumn": 3
  299. }
  300. },
  301. "logicalLocations": [
  302. {
  303. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  304. "kind": "function"
  305. }
  306. ]
  307. }
  308. ],
  309. "properties": {
  310. "targetSymbol": "hb_subset_plan_t::unicodes"
  311. }
  312. },
  313. {
  314. "ruleId": "C26495",
  315. "message": {
  316. "text": "Die Variable \"hb_subset_plan_t::name_ids\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  317. },
  318. "locations": [
  319. {
  320. "physicalLocation": {
  321. "artifactLocation": {
  322. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  323. },
  324. "region": {
  325. "startLine": 46,
  326. "startColumn": 3,
  327. "endLine": 46,
  328. "endColumn": 3
  329. }
  330. },
  331. "logicalLocations": [
  332. {
  333. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  334. "kind": "function"
  335. }
  336. ]
  337. }
  338. ],
  339. "properties": {
  340. "targetSymbol": "hb_subset_plan_t::name_ids"
  341. }
  342. },
  343. {
  344. "ruleId": "C26495",
  345. "message": {
  346. "text": "Die Variable \"hb_subset_plan_t::name_languages\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  347. },
  348. "locations": [
  349. {
  350. "physicalLocation": {
  351. "artifactLocation": {
  352. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  353. },
  354. "region": {
  355. "startLine": 46,
  356. "startColumn": 3,
  357. "endLine": 46,
  358. "endColumn": 3
  359. }
  360. },
  361. "logicalLocations": [
  362. {
  363. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  364. "kind": "function"
  365. }
  366. ]
  367. }
  368. ],
  369. "properties": {
  370. "targetSymbol": "hb_subset_plan_t::name_languages"
  371. }
  372. },
  373. {
  374. "ruleId": "C26495",
  375. "message": {
  376. "text": "Die Variable \"hb_subset_plan_t::layout_features\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  377. },
  378. "locations": [
  379. {
  380. "physicalLocation": {
  381. "artifactLocation": {
  382. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  383. },
  384. "region": {
  385. "startLine": 46,
  386. "startColumn": 3,
  387. "endLine": 46,
  388. "endColumn": 3
  389. }
  390. },
  391. "logicalLocations": [
  392. {
  393. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  394. "kind": "function"
  395. }
  396. ]
  397. }
  398. ],
  399. "properties": {
  400. "targetSymbol": "hb_subset_plan_t::layout_features"
  401. }
  402. },
  403. {
  404. "ruleId": "C26495",
  405. "message": {
  406. "text": "Die Variable \"hb_subset_plan_t::layout_scripts\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  407. },
  408. "locations": [
  409. {
  410. "physicalLocation": {
  411. "artifactLocation": {
  412. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  413. },
  414. "region": {
  415. "startLine": 46,
  416. "startColumn": 3,
  417. "endLine": 46,
  418. "endColumn": 3
  419. }
  420. },
  421. "logicalLocations": [
  422. {
  423. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  424. "kind": "function"
  425. }
  426. ]
  427. }
  428. ],
  429. "properties": {
  430. "targetSymbol": "hb_subset_plan_t::layout_scripts"
  431. }
  432. },
  433. {
  434. "ruleId": "C26495",
  435. "message": {
  436. "text": "Die Variable \"hb_subset_plan_t::glyphs_requested\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  437. },
  438. "locations": [
  439. {
  440. "physicalLocation": {
  441. "artifactLocation": {
  442. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  443. },
  444. "region": {
  445. "startLine": 46,
  446. "startColumn": 3,
  447. "endLine": 46,
  448. "endColumn": 3
  449. }
  450. },
  451. "logicalLocations": [
  452. {
  453. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  454. "kind": "function"
  455. }
  456. ]
  457. }
  458. ],
  459. "properties": {
  460. "targetSymbol": "hb_subset_plan_t::glyphs_requested"
  461. }
  462. },
  463. {
  464. "ruleId": "C26495",
  465. "message": {
  466. "text": "Die Variable \"hb_subset_plan_t::no_subset_tables\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  467. },
  468. "locations": [
  469. {
  470. "physicalLocation": {
  471. "artifactLocation": {
  472. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  473. },
  474. "region": {
  475. "startLine": 46,
  476. "startColumn": 3,
  477. "endLine": 46,
  478. "endColumn": 3
  479. }
  480. },
  481. "logicalLocations": [
  482. {
  483. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  484. "kind": "function"
  485. }
  486. ]
  487. }
  488. ],
  489. "properties": {
  490. "targetSymbol": "hb_subset_plan_t::no_subset_tables"
  491. }
  492. },
  493. {
  494. "ruleId": "C26495",
  495. "message": {
  496. "text": "Die Variable \"hb_subset_plan_t::drop_tables\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  497. },
  498. "locations": [
  499. {
  500. "physicalLocation": {
  501. "artifactLocation": {
  502. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  503. },
  504. "region": {
  505. "startLine": 46,
  506. "startColumn": 3,
  507. "endLine": 46,
  508. "endColumn": 3
  509. }
  510. },
  511. "logicalLocations": [
  512. {
  513. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  514. "kind": "function"
  515. }
  516. ]
  517. }
  518. ],
  519. "properties": {
  520. "targetSymbol": "hb_subset_plan_t::drop_tables"
  521. }
  522. },
  523. {
  524. "ruleId": "C26495",
  525. "message": {
  526. "text": "Die Variable \"hb_subset_plan_t::codepoint_to_glyph\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  527. },
  528. "locations": [
  529. {
  530. "physicalLocation": {
  531. "artifactLocation": {
  532. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  533. },
  534. "region": {
  535. "startLine": 46,
  536. "startColumn": 3,
  537. "endLine": 46,
  538. "endColumn": 3
  539. }
  540. },
  541. "logicalLocations": [
  542. {
  543. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  544. "kind": "function"
  545. }
  546. ]
  547. }
  548. ],
  549. "properties": {
  550. "targetSymbol": "hb_subset_plan_t::codepoint_to_glyph"
  551. }
  552. },
  553. {
  554. "ruleId": "C26495",
  555. "message": {
  556. "text": "Die Variable \"hb_subset_plan_t::glyph_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  557. },
  558. "locations": [
  559. {
  560. "physicalLocation": {
  561. "artifactLocation": {
  562. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  563. },
  564. "region": {
  565. "startLine": 46,
  566. "startColumn": 3,
  567. "endLine": 46,
  568. "endColumn": 3
  569. }
  570. },
  571. "logicalLocations": [
  572. {
  573. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  574. "kind": "function"
  575. }
  576. ]
  577. }
  578. ],
  579. "properties": {
  580. "targetSymbol": "hb_subset_plan_t::glyph_map"
  581. }
  582. },
  583. {
  584. "ruleId": "C26495",
  585. "message": {
  586. "text": "Die Variable \"hb_subset_plan_t::reverse_glyph_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  587. },
  588. "locations": [
  589. {
  590. "physicalLocation": {
  591. "artifactLocation": {
  592. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  593. },
  594. "region": {
  595. "startLine": 46,
  596. "startColumn": 3,
  597. "endLine": 46,
  598. "endColumn": 3
  599. }
  600. },
  601. "logicalLocations": [
  602. {
  603. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  604. "kind": "function"
  605. }
  606. ]
  607. }
  608. ],
  609. "properties": {
  610. "targetSymbol": "hb_subset_plan_t::reverse_glyph_map"
  611. }
  612. },
  613. {
  614. "ruleId": "C26495",
  615. "message": {
  616. "text": "Die Variable \"hb_subset_plan_t::glyph_map_gsub\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  617. },
  618. "locations": [
  619. {
  620. "physicalLocation": {
  621. "artifactLocation": {
  622. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  623. },
  624. "region": {
  625. "startLine": 46,
  626. "startColumn": 3,
  627. "endLine": 46,
  628. "endColumn": 3
  629. }
  630. },
  631. "logicalLocations": [
  632. {
  633. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  634. "kind": "function"
  635. }
  636. ]
  637. }
  638. ],
  639. "properties": {
  640. "targetSymbol": "hb_subset_plan_t::glyph_map_gsub"
  641. }
  642. },
  643. {
  644. "ruleId": "C26495",
  645. "message": {
  646. "text": "Die Variable \"hb_subset_plan_t::source\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  647. },
  648. "locations": [
  649. {
  650. "physicalLocation": {
  651. "artifactLocation": {
  652. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  653. },
  654. "region": {
  655. "startLine": 46,
  656. "startColumn": 3,
  657. "endLine": 46,
  658. "endColumn": 3
  659. }
  660. },
  661. "logicalLocations": [
  662. {
  663. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  664. "kind": "function"
  665. }
  666. ]
  667. }
  668. ],
  669. "properties": {
  670. "targetSymbol": "hb_subset_plan_t::source"
  671. }
  672. },
  673. {
  674. "ruleId": "C26495",
  675. "message": {
  676. "text": "Die Variable \"hb_subset_plan_t::dest\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  677. },
  678. "locations": [
  679. {
  680. "physicalLocation": {
  681. "artifactLocation": {
  682. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  683. },
  684. "region": {
  685. "startLine": 46,
  686. "startColumn": 3,
  687. "endLine": 46,
  688. "endColumn": 3
  689. }
  690. },
  691. "logicalLocations": [
  692. {
  693. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  694. "kind": "function"
  695. }
  696. ]
  697. }
  698. ],
  699. "properties": {
  700. "targetSymbol": "hb_subset_plan_t::dest"
  701. }
  702. },
  703. {
  704. "ruleId": "C26495",
  705. "message": {
  706. "text": "Die Variable \"hb_subset_plan_t::_num_output_glyphs\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  707. },
  708. "locations": [
  709. {
  710. "physicalLocation": {
  711. "artifactLocation": {
  712. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  713. },
  714. "region": {
  715. "startLine": 46,
  716. "startColumn": 3,
  717. "endLine": 46,
  718. "endColumn": 3
  719. }
  720. },
  721. "logicalLocations": [
  722. {
  723. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  724. "kind": "function"
  725. }
  726. ]
  727. }
  728. ],
  729. "properties": {
  730. "targetSymbol": "hb_subset_plan_t::_num_output_glyphs"
  731. }
  732. },
  733. {
  734. "ruleId": "C26495",
  735. "message": {
  736. "text": "Die Variable \"hb_subset_plan_t::_glyphset\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  737. },
  738. "locations": [
  739. {
  740. "physicalLocation": {
  741. "artifactLocation": {
  742. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  743. },
  744. "region": {
  745. "startLine": 46,
  746. "startColumn": 3,
  747. "endLine": 46,
  748. "endColumn": 3
  749. }
  750. },
  751. "logicalLocations": [
  752. {
  753. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  754. "kind": "function"
  755. }
  756. ]
  757. }
  758. ],
  759. "properties": {
  760. "targetSymbol": "hb_subset_plan_t::_glyphset"
  761. }
  762. },
  763. {
  764. "ruleId": "C26495",
  765. "message": {
  766. "text": "Die Variable \"hb_subset_plan_t::_glyphset_gsub\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  767. },
  768. "locations": [
  769. {
  770. "physicalLocation": {
  771. "artifactLocation": {
  772. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  773. },
  774. "region": {
  775. "startLine": 46,
  776. "startColumn": 3,
  777. "endLine": 46,
  778. "endColumn": 3
  779. }
  780. },
  781. "logicalLocations": [
  782. {
  783. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  784. "kind": "function"
  785. }
  786. ]
  787. }
  788. ],
  789. "properties": {
  790. "targetSymbol": "hb_subset_plan_t::_glyphset_gsub"
  791. }
  792. },
  793. {
  794. "ruleId": "C26495",
  795. "message": {
  796. "text": "Die Variable \"hb_subset_plan_t::_glyphset_mathed\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  797. },
  798. "locations": [
  799. {
  800. "physicalLocation": {
  801. "artifactLocation": {
  802. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  803. },
  804. "region": {
  805. "startLine": 46,
  806. "startColumn": 3,
  807. "endLine": 46,
  808. "endColumn": 3
  809. }
  810. },
  811. "logicalLocations": [
  812. {
  813. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  814. "kind": "function"
  815. }
  816. ]
  817. }
  818. ],
  819. "properties": {
  820. "targetSymbol": "hb_subset_plan_t::_glyphset_mathed"
  821. }
  822. },
  823. {
  824. "ruleId": "C26495",
  825. "message": {
  826. "text": "Die Variable \"hb_subset_plan_t::_glyphset_colred\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  827. },
  828. "locations": [
  829. {
  830. "physicalLocation": {
  831. "artifactLocation": {
  832. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  833. },
  834. "region": {
  835. "startLine": 46,
  836. "startColumn": 3,
  837. "endLine": 46,
  838. "endColumn": 3
  839. }
  840. },
  841. "logicalLocations": [
  842. {
  843. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  844. "kind": "function"
  845. }
  846. ]
  847. }
  848. ],
  849. "properties": {
  850. "targetSymbol": "hb_subset_plan_t::_glyphset_colred"
  851. }
  852. },
  853. {
  854. "ruleId": "C26495",
  855. "message": {
  856. "text": "Die Variable \"hb_subset_plan_t::gsub_lookups\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  857. },
  858. "locations": [
  859. {
  860. "physicalLocation": {
  861. "artifactLocation": {
  862. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  863. },
  864. "region": {
  865. "startLine": 46,
  866. "startColumn": 3,
  867. "endLine": 46,
  868. "endColumn": 3
  869. }
  870. },
  871. "logicalLocations": [
  872. {
  873. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  874. "kind": "function"
  875. }
  876. ]
  877. }
  878. ],
  879. "properties": {
  880. "targetSymbol": "hb_subset_plan_t::gsub_lookups"
  881. }
  882. },
  883. {
  884. "ruleId": "C26495",
  885. "message": {
  886. "text": "Die Variable \"hb_subset_plan_t::gpos_lookups\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  887. },
  888. "locations": [
  889. {
  890. "physicalLocation": {
  891. "artifactLocation": {
  892. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  893. },
  894. "region": {
  895. "startLine": 46,
  896. "startColumn": 3,
  897. "endLine": 46,
  898. "endColumn": 3
  899. }
  900. },
  901. "logicalLocations": [
  902. {
  903. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  904. "kind": "function"
  905. }
  906. ]
  907. }
  908. ],
  909. "properties": {
  910. "targetSymbol": "hb_subset_plan_t::gpos_lookups"
  911. }
  912. },
  913. {
  914. "ruleId": "C26495",
  915. "message": {
  916. "text": "Die Variable \"hb_subset_plan_t::gsub_langsys\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  917. },
  918. "locations": [
  919. {
  920. "physicalLocation": {
  921. "artifactLocation": {
  922. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  923. },
  924. "region": {
  925. "startLine": 46,
  926. "startColumn": 3,
  927. "endLine": 46,
  928. "endColumn": 3
  929. }
  930. },
  931. "logicalLocations": [
  932. {
  933. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  934. "kind": "function"
  935. }
  936. ]
  937. }
  938. ],
  939. "properties": {
  940. "targetSymbol": "hb_subset_plan_t::gsub_langsys"
  941. }
  942. },
  943. {
  944. "ruleId": "C26495",
  945. "message": {
  946. "text": "Die Variable \"hb_subset_plan_t::gpos_langsys\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  947. },
  948. "locations": [
  949. {
  950. "physicalLocation": {
  951. "artifactLocation": {
  952. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  953. },
  954. "region": {
  955. "startLine": 46,
  956. "startColumn": 3,
  957. "endLine": 46,
  958. "endColumn": 3
  959. }
  960. },
  961. "logicalLocations": [
  962. {
  963. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  964. "kind": "function"
  965. }
  966. ]
  967. }
  968. ],
  969. "properties": {
  970. "targetSymbol": "hb_subset_plan_t::gpos_langsys"
  971. }
  972. },
  973. {
  974. "ruleId": "C26495",
  975. "message": {
  976. "text": "Die Variable \"hb_subset_plan_t::gsub_features\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  977. },
  978. "locations": [
  979. {
  980. "physicalLocation": {
  981. "artifactLocation": {
  982. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  983. },
  984. "region": {
  985. "startLine": 46,
  986. "startColumn": 3,
  987. "endLine": 46,
  988. "endColumn": 3
  989. }
  990. },
  991. "logicalLocations": [
  992. {
  993. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  994. "kind": "function"
  995. }
  996. ]
  997. }
  998. ],
  999. "properties": {
  1000. "targetSymbol": "hb_subset_plan_t::gsub_features"
  1001. }
  1002. },
  1003. {
  1004. "ruleId": "C26495",
  1005. "message": {
  1006. "text": "Die Variable \"hb_subset_plan_t::gpos_features\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1007. },
  1008. "locations": [
  1009. {
  1010. "physicalLocation": {
  1011. "artifactLocation": {
  1012. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1013. },
  1014. "region": {
  1015. "startLine": 46,
  1016. "startColumn": 3,
  1017. "endLine": 46,
  1018. "endColumn": 3
  1019. }
  1020. },
  1021. "logicalLocations": [
  1022. {
  1023. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1024. "kind": "function"
  1025. }
  1026. ]
  1027. }
  1028. ],
  1029. "properties": {
  1030. "targetSymbol": "hb_subset_plan_t::gpos_features"
  1031. }
  1032. },
  1033. {
  1034. "ruleId": "C26495",
  1035. "message": {
  1036. "text": "Die Variable \"hb_subset_plan_t::gsub_feature_record_cond_idx_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1037. },
  1038. "locations": [
  1039. {
  1040. "physicalLocation": {
  1041. "artifactLocation": {
  1042. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1043. },
  1044. "region": {
  1045. "startLine": 46,
  1046. "startColumn": 3,
  1047. "endLine": 46,
  1048. "endColumn": 3
  1049. }
  1050. },
  1051. "logicalLocations": [
  1052. {
  1053. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1054. "kind": "function"
  1055. }
  1056. ]
  1057. }
  1058. ],
  1059. "properties": {
  1060. "targetSymbol": "hb_subset_plan_t::gsub_feature_record_cond_idx_map"
  1061. }
  1062. },
  1063. {
  1064. "ruleId": "C26495",
  1065. "message": {
  1066. "text": "Die Variable \"hb_subset_plan_t::gpos_feature_record_cond_idx_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1067. },
  1068. "locations": [
  1069. {
  1070. "physicalLocation": {
  1071. "artifactLocation": {
  1072. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1073. },
  1074. "region": {
  1075. "startLine": 46,
  1076. "startColumn": 3,
  1077. "endLine": 46,
  1078. "endColumn": 3
  1079. }
  1080. },
  1081. "logicalLocations": [
  1082. {
  1083. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1084. "kind": "function"
  1085. }
  1086. ]
  1087. }
  1088. ],
  1089. "properties": {
  1090. "targetSymbol": "hb_subset_plan_t::gpos_feature_record_cond_idx_map"
  1091. }
  1092. },
  1093. {
  1094. "ruleId": "C26495",
  1095. "message": {
  1096. "text": "Die Variable \"hb_subset_plan_t::gsub_feature_substitutes_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1097. },
  1098. "locations": [
  1099. {
  1100. "physicalLocation": {
  1101. "artifactLocation": {
  1102. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1103. },
  1104. "region": {
  1105. "startLine": 46,
  1106. "startColumn": 3,
  1107. "endLine": 46,
  1108. "endColumn": 3
  1109. }
  1110. },
  1111. "logicalLocations": [
  1112. {
  1113. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1114. "kind": "function"
  1115. }
  1116. ]
  1117. }
  1118. ],
  1119. "properties": {
  1120. "targetSymbol": "hb_subset_plan_t::gsub_feature_substitutes_map"
  1121. }
  1122. },
  1123. {
  1124. "ruleId": "C26495",
  1125. "message": {
  1126. "text": "Die Variable \"hb_subset_plan_t::gpos_feature_substitutes_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1127. },
  1128. "locations": [
  1129. {
  1130. "physicalLocation": {
  1131. "artifactLocation": {
  1132. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1133. },
  1134. "region": {
  1135. "startLine": 46,
  1136. "startColumn": 3,
  1137. "endLine": 46,
  1138. "endColumn": 3
  1139. }
  1140. },
  1141. "logicalLocations": [
  1142. {
  1143. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1144. "kind": "function"
  1145. }
  1146. ]
  1147. }
  1148. ],
  1149. "properties": {
  1150. "targetSymbol": "hb_subset_plan_t::gpos_feature_substitutes_map"
  1151. }
  1152. },
  1153. {
  1154. "ruleId": "C26495",
  1155. "message": {
  1156. "text": "Die Variable \"hb_subset_plan_t::colrv1_layers\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1157. },
  1158. "locations": [
  1159. {
  1160. "physicalLocation": {
  1161. "artifactLocation": {
  1162. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1163. },
  1164. "region": {
  1165. "startLine": 46,
  1166. "startColumn": 3,
  1167. "endLine": 46,
  1168. "endColumn": 3
  1169. }
  1170. },
  1171. "logicalLocations": [
  1172. {
  1173. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1174. "kind": "function"
  1175. }
  1176. ]
  1177. }
  1178. ],
  1179. "properties": {
  1180. "targetSymbol": "hb_subset_plan_t::colrv1_layers"
  1181. }
  1182. },
  1183. {
  1184. "ruleId": "C26495",
  1185. "message": {
  1186. "text": "Die Variable \"hb_subset_plan_t::colr_palettes\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1187. },
  1188. "locations": [
  1189. {
  1190. "physicalLocation": {
  1191. "artifactLocation": {
  1192. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1193. },
  1194. "region": {
  1195. "startLine": 46,
  1196. "startColumn": 3,
  1197. "endLine": 46,
  1198. "endColumn": 3
  1199. }
  1200. },
  1201. "logicalLocations": [
  1202. {
  1203. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1204. "kind": "function"
  1205. }
  1206. ]
  1207. }
  1208. ],
  1209. "properties": {
  1210. "targetSymbol": "hb_subset_plan_t::colr_palettes"
  1211. }
  1212. },
  1213. {
  1214. "ruleId": "C26495",
  1215. "message": {
  1216. "text": "Die Variable \"hb_subset_plan_t::sanitized_table_cache\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1217. },
  1218. "locations": [
  1219. {
  1220. "physicalLocation": {
  1221. "artifactLocation": {
  1222. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1223. },
  1224. "region": {
  1225. "startLine": 46,
  1226. "startColumn": 3,
  1227. "endLine": 46,
  1228. "endColumn": 3
  1229. }
  1230. },
  1231. "logicalLocations": [
  1232. {
  1233. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1234. "kind": "function"
  1235. }
  1236. ]
  1237. }
  1238. ],
  1239. "properties": {
  1240. "targetSymbol": "hb_subset_plan_t::sanitized_table_cache"
  1241. }
  1242. },
  1243. {
  1244. "ruleId": "C26495",
  1245. "message": {
  1246. "text": "Die Variable \"hb_subset_plan_t::layout_variation_idx_delta_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1247. },
  1248. "locations": [
  1249. {
  1250. "physicalLocation": {
  1251. "artifactLocation": {
  1252. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1253. },
  1254. "region": {
  1255. "startLine": 46,
  1256. "startColumn": 3,
  1257. "endLine": 46,
  1258. "endColumn": 3
  1259. }
  1260. },
  1261. "logicalLocations": [
  1262. {
  1263. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1264. "kind": "function"
  1265. }
  1266. ]
  1267. }
  1268. ],
  1269. "properties": {
  1270. "targetSymbol": "hb_subset_plan_t::layout_variation_idx_delta_map"
  1271. }
  1272. },
  1273. {
  1274. "ruleId": "C26495",
  1275. "message": {
  1276. "text": "Die Variable \"hb_subset_plan_t::axes_location\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1277. },
  1278. "locations": [
  1279. {
  1280. "physicalLocation": {
  1281. "artifactLocation": {
  1282. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1283. },
  1284. "region": {
  1285. "startLine": 46,
  1286. "startColumn": 3,
  1287. "endLine": 46,
  1288. "endColumn": 3
  1289. }
  1290. },
  1291. "logicalLocations": [
  1292. {
  1293. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1294. "kind": "function"
  1295. }
  1296. ]
  1297. }
  1298. ],
  1299. "properties": {
  1300. "targetSymbol": "hb_subset_plan_t::axes_location"
  1301. }
  1302. },
  1303. {
  1304. "ruleId": "C26495",
  1305. "message": {
  1306. "text": "Die Variable \"hb_subset_plan_t::user_axes_location\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1307. },
  1308. "locations": [
  1309. {
  1310. "physicalLocation": {
  1311. "artifactLocation": {
  1312. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1313. },
  1314. "region": {
  1315. "startLine": 46,
  1316. "startColumn": 3,
  1317. "endLine": 46,
  1318. "endColumn": 3
  1319. }
  1320. },
  1321. "logicalLocations": [
  1322. {
  1323. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1324. "kind": "function"
  1325. }
  1326. ]
  1327. }
  1328. ],
  1329. "properties": {
  1330. "targetSymbol": "hb_subset_plan_t::user_axes_location"
  1331. }
  1332. },
  1333. {
  1334. "ruleId": "C26495",
  1335. "message": {
  1336. "text": "Die Variable \"hb_subset_plan_t::axes_index_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1337. },
  1338. "locations": [
  1339. {
  1340. "physicalLocation": {
  1341. "artifactLocation": {
  1342. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1343. },
  1344. "region": {
  1345. "startLine": 46,
  1346. "startColumn": 3,
  1347. "endLine": 46,
  1348. "endColumn": 3
  1349. }
  1350. },
  1351. "logicalLocations": [
  1352. {
  1353. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1354. "kind": "function"
  1355. }
  1356. ]
  1357. }
  1358. ],
  1359. "properties": {
  1360. "targetSymbol": "hb_subset_plan_t::axes_index_map"
  1361. }
  1362. },
  1363. {
  1364. "ruleId": "C26495",
  1365. "message": {
  1366. "text": "Die Variable \"hb_subset_plan_t::axes_old_index_tag_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1367. },
  1368. "locations": [
  1369. {
  1370. "physicalLocation": {
  1371. "artifactLocation": {
  1372. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1373. },
  1374. "region": {
  1375. "startLine": 46,
  1376. "startColumn": 3,
  1377. "endLine": 46,
  1378. "endColumn": 3
  1379. }
  1380. },
  1381. "logicalLocations": [
  1382. {
  1383. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1384. "kind": "function"
  1385. }
  1386. ]
  1387. }
  1388. ],
  1389. "properties": {
  1390. "targetSymbol": "hb_subset_plan_t::axes_old_index_tag_map"
  1391. }
  1392. },
  1393. {
  1394. "ruleId": "C26495",
  1395. "message": {
  1396. "text": "Die Variable \"hb_subset_plan_t::all_axes_pinned\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1397. },
  1398. "locations": [
  1399. {
  1400. "physicalLocation": {
  1401. "artifactLocation": {
  1402. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1403. },
  1404. "region": {
  1405. "startLine": 46,
  1406. "startColumn": 3,
  1407. "endLine": 46,
  1408. "endColumn": 3
  1409. }
  1410. },
  1411. "logicalLocations": [
  1412. {
  1413. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1414. "kind": "function"
  1415. }
  1416. ]
  1417. }
  1418. ],
  1419. "properties": {
  1420. "targetSymbol": "hb_subset_plan_t::all_axes_pinned"
  1421. }
  1422. },
  1423. {
  1424. "ruleId": "C26495",
  1425. "message": {
  1426. "text": "Die Variable \"hb_subset_plan_t::pinned_at_default\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1427. },
  1428. "locations": [
  1429. {
  1430. "physicalLocation": {
  1431. "artifactLocation": {
  1432. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1433. },
  1434. "region": {
  1435. "startLine": 46,
  1436. "startColumn": 3,
  1437. "endLine": 46,
  1438. "endColumn": 3
  1439. }
  1440. },
  1441. "logicalLocations": [
  1442. {
  1443. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1444. "kind": "function"
  1445. }
  1446. ]
  1447. }
  1448. ],
  1449. "properties": {
  1450. "targetSymbol": "hb_subset_plan_t::pinned_at_default"
  1451. }
  1452. },
  1453. {
  1454. "ruleId": "C26495",
  1455. "message": {
  1456. "text": "Die Variable \"hb_subset_plan_t::has_seac\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1457. },
  1458. "locations": [
  1459. {
  1460. "physicalLocation": {
  1461. "artifactLocation": {
  1462. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1463. },
  1464. "region": {
  1465. "startLine": 46,
  1466. "startColumn": 3,
  1467. "endLine": 46,
  1468. "endColumn": 3
  1469. }
  1470. },
  1471. "logicalLocations": [
  1472. {
  1473. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1474. "kind": "function"
  1475. }
  1476. ]
  1477. }
  1478. ],
  1479. "properties": {
  1480. "targetSymbol": "hb_subset_plan_t::has_seac"
  1481. }
  1482. },
  1483. {
  1484. "ruleId": "C26495",
  1485. "message": {
  1486. "text": "Die Variable \"hb_subset_plan_t::hmtx_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1487. },
  1488. "locations": [
  1489. {
  1490. "physicalLocation": {
  1491. "artifactLocation": {
  1492. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1493. },
  1494. "region": {
  1495. "startLine": 46,
  1496. "startColumn": 3,
  1497. "endLine": 46,
  1498. "endColumn": 3
  1499. }
  1500. },
  1501. "logicalLocations": [
  1502. {
  1503. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1504. "kind": "function"
  1505. }
  1506. ]
  1507. }
  1508. ],
  1509. "properties": {
  1510. "targetSymbol": "hb_subset_plan_t::hmtx_map"
  1511. }
  1512. },
  1513. {
  1514. "ruleId": "C26495",
  1515. "message": {
  1516. "text": "Die Variable \"hb_subset_plan_t::vmtx_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1517. },
  1518. "locations": [
  1519. {
  1520. "physicalLocation": {
  1521. "artifactLocation": {
  1522. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1523. },
  1524. "region": {
  1525. "startLine": 46,
  1526. "startColumn": 3,
  1527. "endLine": 46,
  1528. "endColumn": 3
  1529. }
  1530. },
  1531. "logicalLocations": [
  1532. {
  1533. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1534. "kind": "function"
  1535. }
  1536. ]
  1537. }
  1538. ],
  1539. "properties": {
  1540. "targetSymbol": "hb_subset_plan_t::vmtx_map"
  1541. }
  1542. },
  1543. {
  1544. "ruleId": "C26495",
  1545. "message": {
  1546. "text": "Die Variable \"hb_subset_plan_t::accelerator\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1547. },
  1548. "locations": [
  1549. {
  1550. "physicalLocation": {
  1551. "artifactLocation": {
  1552. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1553. },
  1554. "region": {
  1555. "startLine": 46,
  1556. "startColumn": 3,
  1557. "endLine": 46,
  1558. "endColumn": 3
  1559. }
  1560. },
  1561. "logicalLocations": [
  1562. {
  1563. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1564. "kind": "function"
  1565. }
  1566. ]
  1567. }
  1568. ],
  1569. "properties": {
  1570. "targetSymbol": "hb_subset_plan_t::accelerator"
  1571. }
  1572. },
  1573. {
  1574. "ruleId": "C26495",
  1575. "message": {
  1576. "text": "Die Variable \"hb_subset_plan_t::inprogress_accelerator\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1577. },
  1578. "locations": [
  1579. {
  1580. "physicalLocation": {
  1581. "artifactLocation": {
  1582. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1583. },
  1584. "region": {
  1585. "startLine": 46,
  1586. "startColumn": 3,
  1587. "endLine": 46,
  1588. "endColumn": 3
  1589. }
  1590. },
  1591. "logicalLocations": [
  1592. {
  1593. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1594. "kind": "function"
  1595. }
  1596. ]
  1597. }
  1598. ],
  1599. "properties": {
  1600. "targetSymbol": "hb_subset_plan_t::inprogress_accelerator"
  1601. }
  1602. },
  1603. {
  1604. "ruleId": "C26495",
  1605. "message": {
  1606. "text": "Die Variable \"hb_ot_map_builder_t::chosen_script\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1607. },
  1608. "locations": [
  1609. {
  1610. "physicalLocation": {
  1611. "artifactLocation": {
  1612. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-map.cc"
  1613. },
  1614. "region": {
  1615. "startLine": 45,
  1616. "startColumn": 22,
  1617. "endLine": 45,
  1618. "endColumn": 22
  1619. }
  1620. },
  1621. "logicalLocations": [
  1622. {
  1623. "decoratedName": "??0hb_ot_map_builder_t@@QEAA@PEAUhb_face_t@@AEBUhb_segment_properties_t@@@Z",
  1624. "kind": "function"
  1625. }
  1626. ]
  1627. }
  1628. ],
  1629. "properties": {
  1630. "targetSymbol": "hb_ot_map_builder_t::chosen_script"
  1631. }
  1632. },
  1633. {
  1634. "ruleId": "C26495",
  1635. "message": {
  1636. "text": "Die Variable \"hb_ot_map_builder_t::script_index\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1637. },
  1638. "locations": [
  1639. {
  1640. "physicalLocation": {
  1641. "artifactLocation": {
  1642. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-map.cc"
  1643. },
  1644. "region": {
  1645. "startLine": 45,
  1646. "startColumn": 22,
  1647. "endLine": 45,
  1648. "endColumn": 22
  1649. }
  1650. },
  1651. "logicalLocations": [
  1652. {
  1653. "decoratedName": "??0hb_ot_map_builder_t@@QEAA@PEAUhb_face_t@@AEBUhb_segment_properties_t@@@Z",
  1654. "kind": "function"
  1655. }
  1656. ]
  1657. }
  1658. ],
  1659. "properties": {
  1660. "targetSymbol": "hb_ot_map_builder_t::script_index"
  1661. }
  1662. },
  1663. {
  1664. "ruleId": "C26495",
  1665. "message": {
  1666. "text": "Die Variable \"hb_ot_map_builder_t::language_index\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1667. },
  1668. "locations": [
  1669. {
  1670. "physicalLocation": {
  1671. "artifactLocation": {
  1672. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-map.cc"
  1673. },
  1674. "region": {
  1675. "startLine": 45,
  1676. "startColumn": 22,
  1677. "endLine": 45,
  1678. "endColumn": 22
  1679. }
  1680. },
  1681. "logicalLocations": [
  1682. {
  1683. "decoratedName": "??0hb_ot_map_builder_t@@QEAA@PEAUhb_face_t@@AEBUhb_segment_properties_t@@@Z",
  1684. "kind": "function"
  1685. }
  1686. ]
  1687. }
  1688. ],
  1689. "properties": {
  1690. "targetSymbol": "hb_ot_map_builder_t::language_index"
  1691. }
  1692. },
  1693. {
  1694. "ruleId": "C26495",
  1695. "message": {
  1696. "text": "Die Variable \"hb_ot_map_builder_t::current_stage\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1697. },
  1698. "locations": [
  1699. {
  1700. "physicalLocation": {
  1701. "artifactLocation": {
  1702. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-map.cc"
  1703. },
  1704. "region": {
  1705. "startLine": 45,
  1706. "startColumn": 22,
  1707. "endLine": 45,
  1708. "endColumn": 22
  1709. }
  1710. },
  1711. "logicalLocations": [
  1712. {
  1713. "decoratedName": "??0hb_ot_map_builder_t@@QEAA@PEAUhb_face_t@@AEBUhb_segment_properties_t@@@Z",
  1714. "kind": "function"
  1715. }
  1716. ]
  1717. }
  1718. ],
  1719. "properties": {
  1720. "targetSymbol": "hb_ot_map_builder_t::current_stage"
  1721. }
  1722. },
  1723. {
  1724. "ruleId": "C26439",
  1725. "message": {
  1726. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  1727. },
  1728. "locations": [
  1729. {
  1730. "physicalLocation": {
  1731. "artifactLocation": {
  1732. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  1733. },
  1734. "region": {
  1735. "startLine": 45,
  1736. "startColumn": 3,
  1737. "endLine": 45,
  1738. "endColumn": 3
  1739. }
  1740. },
  1741. "logicalLocations": [
  1742. {
  1743. "decoratedName": "??0?$hb_sparseset_t@Uhb_bit_set_invertible_t@@@@QEAA@$$QEAU0@@Z",
  1744. "kind": "function"
  1745. }
  1746. ]
  1747. }
  1748. ]
  1749. },
  1750. {
  1751. "ruleId": "C26439",
  1752. "message": {
  1753. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  1754. },
  1755. "locations": [
  1756. {
  1757. "physicalLocation": {
  1758. "artifactLocation": {
  1759. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  1760. },
  1761. "region": {
  1762. "startLine": 47,
  1763. "startColumn": 3,
  1764. "endLine": 47,
  1765. "endColumn": 3
  1766. }
  1767. },
  1768. "logicalLocations": [
  1769. {
  1770. "decoratedName": "??0?$hb_hashmap_t@II$00@@QEAA@$$QEAU0@@Z",
  1771. "kind": "function"
  1772. }
  1773. ]
  1774. }
  1775. ]
  1776. },
  1777. {
  1778. "ruleId": "C26439",
  1779. "message": {
  1780. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  1781. },
  1782. "locations": [
  1783. {
  1784. "physicalLocation": {
  1785. "artifactLocation": {
  1786. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-vector.hh"
  1787. },
  1788. "region": {
  1789. "startLine": 126,
  1790. "startColumn": 16,
  1791. "endLine": 126,
  1792. "endColumn": 16
  1793. }
  1794. },
  1795. "logicalLocations": [
  1796. {
  1797. "decoratedName": "??4?$hb_vector_t@I$0A@@@QEAAAEAU0@$$QEAU0@@Z",
  1798. "kind": "function"
  1799. }
  1800. ]
  1801. }
  1802. ]
  1803. },
  1804. {
  1805. "ruleId": "C6001",
  1806. "message": {
  1807. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  1808. },
  1809. "locations": [
  1810. {
  1811. "physicalLocation": {
  1812. "artifactLocation": {
  1813. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1814. },
  1815. "region": {
  1816. "startLine": 52,
  1817. "startColumn": 12,
  1818. "endLine": 52,
  1819. "endColumn": 12
  1820. }
  1821. },
  1822. "logicalLocations": [
  1823. {
  1824. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_neg>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_neg>@@@Z",
  1825. "kind": "function"
  1826. }
  1827. ]
  1828. }
  1829. ],
  1830. "codeFlows": [
  1831. {
  1832. "threadFlows": [
  1833. {
  1834. "locations": [
  1835. {
  1836. "location": {
  1837. "physicalLocation": {
  1838. "artifactLocation": {
  1839. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1840. },
  1841. "region": {
  1842. "startLine": 49,
  1843. "startColumn": 22
  1844. }
  1845. },
  1846. "message": {
  1847. "text": "\"r\" ist nicht initialisiert"
  1848. }
  1849. },
  1850. "kinds": [
  1851. "declaration"
  1852. ],
  1853. "importance": "essential"
  1854. },
  1855. {
  1856. "location": {
  1857. "physicalLocation": {
  1858. "artifactLocation": {
  1859. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1860. },
  1861. "region": {
  1862. "startLine": 50,
  1863. "startColumn": 23
  1864. }
  1865. }
  1866. },
  1867. "importance": "unimportant"
  1868. },
  1869. {
  1870. "location": {
  1871. "physicalLocation": {
  1872. "artifactLocation": {
  1873. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1874. },
  1875. "region": {
  1876. "startLine": 50,
  1877. "startColumn": 32
  1878. }
  1879. },
  1880. "message": {
  1881. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  1882. }
  1883. },
  1884. "kinds": [
  1885. "branch"
  1886. ],
  1887. "importance": "important"
  1888. },
  1889. {
  1890. "location": {
  1891. "physicalLocation": {
  1892. "artifactLocation": {
  1893. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1894. },
  1895. "region": {
  1896. "startLine": 52,
  1897. "startColumn": 5
  1898. }
  1899. }
  1900. },
  1901. "importance": "unimportant"
  1902. },
  1903. {
  1904. "location": {
  1905. "physicalLocation": {
  1906. "artifactLocation": {
  1907. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1908. },
  1909. "region": {
  1910. "startLine": 52,
  1911. "startColumn": 12
  1912. }
  1913. },
  1914. "message": {
  1915. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  1916. }
  1917. },
  1918. "kinds": [
  1919. "usage"
  1920. ],
  1921. "importance": "essential"
  1922. }
  1923. ]
  1924. }
  1925. ]
  1926. }
  1927. ]
  1928. },
  1929. {
  1930. "ruleId": "C6001",
  1931. "message": {
  1932. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  1933. },
  1934. "locations": [
  1935. {
  1936. "physicalLocation": {
  1937. "artifactLocation": {
  1938. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1939. },
  1940. "region": {
  1941. "startLine": 60,
  1942. "startColumn": 12,
  1943. "endLine": 60,
  1944. "endColumn": 12
  1945. }
  1946. },
  1947. "logicalLocations": [
  1948. {
  1949. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_xor>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_xor>@@AEBU0@@Z",
  1950. "kind": "function"
  1951. }
  1952. ]
  1953. }
  1954. ],
  1955. "codeFlows": [
  1956. {
  1957. "threadFlows": [
  1958. {
  1959. "locations": [
  1960. {
  1961. "location": {
  1962. "physicalLocation": {
  1963. "artifactLocation": {
  1964. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1965. },
  1966. "region": {
  1967. "startLine": 57,
  1968. "startColumn": 22
  1969. }
  1970. },
  1971. "message": {
  1972. "text": "\"r\" ist nicht initialisiert"
  1973. }
  1974. },
  1975. "kinds": [
  1976. "declaration"
  1977. ],
  1978. "importance": "essential"
  1979. },
  1980. {
  1981. "location": {
  1982. "physicalLocation": {
  1983. "artifactLocation": {
  1984. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1985. },
  1986. "region": {
  1987. "startLine": 58,
  1988. "startColumn": 23
  1989. }
  1990. }
  1991. },
  1992. "importance": "unimportant"
  1993. },
  1994. {
  1995. "location": {
  1996. "physicalLocation": {
  1997. "artifactLocation": {
  1998. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  1999. },
  2000. "region": {
  2001. "startLine": 58,
  2002. "startColumn": 32
  2003. }
  2004. },
  2005. "message": {
  2006. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  2007. }
  2008. },
  2009. "kinds": [
  2010. "branch"
  2011. ],
  2012. "importance": "important"
  2013. },
  2014. {
  2015. "location": {
  2016. "physicalLocation": {
  2017. "artifactLocation": {
  2018. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2019. },
  2020. "region": {
  2021. "startLine": 60,
  2022. "startColumn": 5
  2023. }
  2024. }
  2025. },
  2026. "importance": "unimportant"
  2027. },
  2028. {
  2029. "location": {
  2030. "physicalLocation": {
  2031. "artifactLocation": {
  2032. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2033. },
  2034. "region": {
  2035. "startLine": 60,
  2036. "startColumn": 12
  2037. }
  2038. },
  2039. "message": {
  2040. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  2041. }
  2042. },
  2043. "kinds": [
  2044. "usage"
  2045. ],
  2046. "importance": "essential"
  2047. }
  2048. ]
  2049. }
  2050. ]
  2051. }
  2052. ]
  2053. },
  2054. {
  2055. "ruleId": "C6001",
  2056. "message": {
  2057. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  2058. },
  2059. "locations": [
  2060. {
  2061. "physicalLocation": {
  2062. "artifactLocation": {
  2063. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2064. },
  2065. "region": {
  2066. "startLine": 60,
  2067. "startColumn": 12,
  2068. "endLine": 60,
  2069. "endColumn": 12
  2070. }
  2071. },
  2072. "logicalLocations": [
  2073. {
  2074. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_and>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_and>@@AEBU0@@Z",
  2075. "kind": "function"
  2076. }
  2077. ]
  2078. }
  2079. ],
  2080. "codeFlows": [
  2081. {
  2082. "threadFlows": [
  2083. {
  2084. "locations": [
  2085. {
  2086. "location": {
  2087. "physicalLocation": {
  2088. "artifactLocation": {
  2089. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2090. },
  2091. "region": {
  2092. "startLine": 57,
  2093. "startColumn": 22
  2094. }
  2095. },
  2096. "message": {
  2097. "text": "\"r\" ist nicht initialisiert"
  2098. }
  2099. },
  2100. "kinds": [
  2101. "declaration"
  2102. ],
  2103. "importance": "essential"
  2104. },
  2105. {
  2106. "location": {
  2107. "physicalLocation": {
  2108. "artifactLocation": {
  2109. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2110. },
  2111. "region": {
  2112. "startLine": 58,
  2113. "startColumn": 23
  2114. }
  2115. }
  2116. },
  2117. "importance": "unimportant"
  2118. },
  2119. {
  2120. "location": {
  2121. "physicalLocation": {
  2122. "artifactLocation": {
  2123. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2124. },
  2125. "region": {
  2126. "startLine": 58,
  2127. "startColumn": 32
  2128. }
  2129. },
  2130. "message": {
  2131. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  2132. }
  2133. },
  2134. "kinds": [
  2135. "branch"
  2136. ],
  2137. "importance": "important"
  2138. },
  2139. {
  2140. "location": {
  2141. "physicalLocation": {
  2142. "artifactLocation": {
  2143. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2144. },
  2145. "region": {
  2146. "startLine": 60,
  2147. "startColumn": 5
  2148. }
  2149. }
  2150. },
  2151. "importance": "unimportant"
  2152. },
  2153. {
  2154. "location": {
  2155. "physicalLocation": {
  2156. "artifactLocation": {
  2157. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2158. },
  2159. "region": {
  2160. "startLine": 60,
  2161. "startColumn": 12
  2162. }
  2163. },
  2164. "message": {
  2165. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  2166. }
  2167. },
  2168. "kinds": [
  2169. "usage"
  2170. ],
  2171. "importance": "essential"
  2172. }
  2173. ]
  2174. }
  2175. ]
  2176. }
  2177. ]
  2178. },
  2179. {
  2180. "ruleId": "C6001",
  2181. "message": {
  2182. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  2183. },
  2184. "locations": [
  2185. {
  2186. "physicalLocation": {
  2187. "artifactLocation": {
  2188. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2189. },
  2190. "region": {
  2191. "startLine": 60,
  2192. "startColumn": 12,
  2193. "endLine": 60,
  2194. "endColumn": 12
  2195. }
  2196. },
  2197. "logicalLocations": [
  2198. {
  2199. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_or>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_or>@@AEBU0@@Z",
  2200. "kind": "function"
  2201. }
  2202. ]
  2203. }
  2204. ],
  2205. "codeFlows": [
  2206. {
  2207. "threadFlows": [
  2208. {
  2209. "locations": [
  2210. {
  2211. "location": {
  2212. "physicalLocation": {
  2213. "artifactLocation": {
  2214. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2215. },
  2216. "region": {
  2217. "startLine": 57,
  2218. "startColumn": 22
  2219. }
  2220. },
  2221. "message": {
  2222. "text": "\"r\" ist nicht initialisiert"
  2223. }
  2224. },
  2225. "kinds": [
  2226. "declaration"
  2227. ],
  2228. "importance": "essential"
  2229. },
  2230. {
  2231. "location": {
  2232. "physicalLocation": {
  2233. "artifactLocation": {
  2234. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2235. },
  2236. "region": {
  2237. "startLine": 58,
  2238. "startColumn": 23
  2239. }
  2240. }
  2241. },
  2242. "importance": "unimportant"
  2243. },
  2244. {
  2245. "location": {
  2246. "physicalLocation": {
  2247. "artifactLocation": {
  2248. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2249. },
  2250. "region": {
  2251. "startLine": 58,
  2252. "startColumn": 32
  2253. }
  2254. },
  2255. "message": {
  2256. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  2257. }
  2258. },
  2259. "kinds": [
  2260. "branch"
  2261. ],
  2262. "importance": "important"
  2263. },
  2264. {
  2265. "location": {
  2266. "physicalLocation": {
  2267. "artifactLocation": {
  2268. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2269. },
  2270. "region": {
  2271. "startLine": 60,
  2272. "startColumn": 5
  2273. }
  2274. }
  2275. },
  2276. "importance": "unimportant"
  2277. },
  2278. {
  2279. "location": {
  2280. "physicalLocation": {
  2281. "artifactLocation": {
  2282. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2283. },
  2284. "region": {
  2285. "startLine": 60,
  2286. "startColumn": 12
  2287. }
  2288. },
  2289. "message": {
  2290. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  2291. }
  2292. },
  2293. "kinds": [
  2294. "usage"
  2295. ],
  2296. "importance": "essential"
  2297. }
  2298. ]
  2299. }
  2300. ]
  2301. }
  2302. ]
  2303. }
  2304. ],
  2305. "tool": {
  2306. "driver": {
  2307. "name": "PREfast",
  2308. "fullName": "PREfast Code Analysis",
  2309. "version": "14.29.30159.0",
  2310. "informationUri": "https://aka.ms/cpp/ca"
  2311. }
  2312. },
  2313. "invocations": [
  2314. {
  2315. "commandLine": "D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\c1xx.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_57de4676ast -typedil -f ..\\..\\thirdparty\\harfbuzz\\src\\hb-ot-map.cc -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 -GR -D_CPPRTTI -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\freetype\\include -nologo -W 3 -diagnostics:column -GF -Og -Ot -Oy -Oi -ltcg -DCODE_ANALYSIS -DWIN64 -DNDEBUG -D_CRT_SECURE_NO_WARNINGS -DHB_NO_MT -Dhb_malloc_impl=fz_hb_malloc -Dhb_calloc_impl=fz_hb_calloc -Dhb_realloc_impl=fz_hb_realloc -Dhb_free_impl=fz_hb_free -DHAVE_FREETYPE -D_MBCS -EHs -D_CPPUNWIND -EHc -MD -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -Fox64\\Release\\libharfbuzz\\hb-ot-map.obj -Fdx64\\Release\\libharfbuzz.pdb -external:W 3 -Gd -wd 4018 -wd 4244 -wd 4146 -wd 4267 -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 D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\UnitTest\\include -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 D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\UnitTest\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\UnitTest\\include -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",
  2316. "executionSuccessful": true
  2317. }
  2318. ],
  2319. "artifacts": [
  2320. {
  2321. "location": {
  2322. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  2323. },
  2324. "roles": [
  2325. "resultFile"
  2326. ],
  2327. "hashes": {
  2328. "md5": "ff5a8277d5fcb14cbcc2b5e06feda4f6"
  2329. }
  2330. },
  2331. {
  2332. "location": {
  2333. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  2334. },
  2335. "roles": [
  2336. "resultFile"
  2337. ],
  2338. "hashes": {
  2339. "md5": "328ea1e7c279bd128f8d02e53b3c69b8"
  2340. }
  2341. },
  2342. {
  2343. "location": {
  2344. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set-invertible.hh"
  2345. },
  2346. "roles": [
  2347. "resultFile"
  2348. ],
  2349. "hashes": {
  2350. "md5": "b2a484c8afaf6a6642f15c165c53e321"
  2351. }
  2352. },
  2353. {
  2354. "location": {
  2355. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  2356. },
  2357. "roles": [
  2358. "resultFile"
  2359. ],
  2360. "hashes": {
  2361. "md5": "6071d676b81588f3cab4f0cb54b35ba4"
  2362. }
  2363. },
  2364. {
  2365. "location": {
  2366. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  2367. },
  2368. "roles": [
  2369. "resultFile"
  2370. ],
  2371. "hashes": {
  2372. "md5": "8069474abf527e6766a557ec56acd85b"
  2373. }
  2374. },
  2375. {
  2376. "location": {
  2377. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-map.cc"
  2378. },
  2379. "roles": [
  2380. "analysisTarget",
  2381. "resultFile"
  2382. ],
  2383. "hashes": {
  2384. "md5": "e32990aced6a7aca7a5d4d13eeecea21"
  2385. }
  2386. },
  2387. {
  2388. "location": {
  2389. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-vector.hh"
  2390. },
  2391. "roles": [
  2392. "resultFile"
  2393. ],
  2394. "hashes": {
  2395. "md5": "c61e323648e53704f465c3fee7b18ce4"
  2396. }
  2397. },
  2398. {
  2399. "location": {
  2400. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  2401. },
  2402. "roles": [
  2403. "resultFile"
  2404. ],
  2405. "hashes": {
  2406. "md5": "556630f4a504776f82f927c0a7f1de43"
  2407. }
  2408. },
  2409. {
  2410. "location": {
  2411. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb.hh"
  2412. },
  2413. "hashes": {
  2414. "md5": "9e83818e264776a5a039633ad0af7e40"
  2415. }
  2416. },
  2417. {
  2418. "location": {
  2419. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-config.hh"
  2420. },
  2421. "hashes": {
  2422. "md5": "72e9b9ac69b98f07a023615f6a20fa88"
  2423. }
  2424. },
  2425. {
  2426. "location": {
  2427. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb.h"
  2428. },
  2429. "hashes": {
  2430. "md5": "a71dddd9ceffbe9ad7735e965fa31fa4"
  2431. }
  2432. },
  2433. {
  2434. "location": {
  2435. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-blob.h"
  2436. },
  2437. "hashes": {
  2438. "md5": "150c53768a43873da08b8fe485f31b11"
  2439. }
  2440. },
  2441. {
  2442. "location": {
  2443. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-common.h"
  2444. },
  2445. "hashes": {
  2446. "md5": "6d34414d1aa6c8312eb518eb5e089698"
  2447. }
  2448. },
  2449. {
  2450. "location": {
  2451. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-rename.h"
  2452. },
  2453. "hashes": {
  2454. "md5": "cdc9086001bbf18983525796b95a3a32"
  2455. }
  2456. },
  2457. {
  2458. "location": {
  2459. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-buffer.h"
  2460. },
  2461. "hashes": {
  2462. "md5": "280ee9b0cc5e21dfb997fe5e1a4fd92d"
  2463. }
  2464. },
  2465. {
  2466. "location": {
  2467. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-unicode.h"
  2468. },
  2469. "hashes": {
  2470. "md5": "7e94d2c5e3e1a7af4804b15af817f5dd"
  2471. }
  2472. },
  2473. {
  2474. "location": {
  2475. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.h"
  2476. },
  2477. "hashes": {
  2478. "md5": "a2621e17ead0c30af0c1018708c64c34"
  2479. }
  2480. },
  2481. {
  2482. "location": {
  2483. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.h"
  2484. },
  2485. "hashes": {
  2486. "md5": "f55b5e142357c36cb7f2b58d24f2d88c"
  2487. }
  2488. },
  2489. {
  2490. "location": {
  2491. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-set.h"
  2492. },
  2493. "hashes": {
  2494. "md5": "20a8f4c0626c2b2d6d73e0a04cd3d017"
  2495. }
  2496. },
  2497. {
  2498. "location": {
  2499. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-draw.h"
  2500. },
  2501. "hashes": {
  2502. "md5": "917b2456c4d3228be5ff3d5aab59e884"
  2503. }
  2504. },
  2505. {
  2506. "location": {
  2507. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-deprecated.h"
  2508. },
  2509. "hashes": {
  2510. "md5": "d779af772cc5ede9ddba22cb607ab06c"
  2511. }
  2512. },
  2513. {
  2514. "location": {
  2515. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-map.h"
  2516. },
  2517. "hashes": {
  2518. "md5": "654598015cf2ffd6992e511c67d77617"
  2519. }
  2520. },
  2521. {
  2522. "location": {
  2523. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape.h"
  2524. },
  2525. "hashes": {
  2526. "md5": "bb4be6a7031101fd4a62ae8c7d4c5000"
  2527. }
  2528. },
  2529. {
  2530. "location": {
  2531. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape-plan.h"
  2532. },
  2533. "hashes": {
  2534. "md5": "e8eac4b976461e1038c585d8fceec10b"
  2535. }
  2536. },
  2537. {
  2538. "location": {
  2539. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-style.h"
  2540. },
  2541. "hashes": {
  2542. "md5": "e5060f7cbf3cdf79a1e907601c33066a"
  2543. }
  2544. },
  2545. {
  2546. "location": {
  2547. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-version.h"
  2548. },
  2549. "hashes": {
  2550. "md5": "2ce6fb47c095f534d1aaec73565e454a"
  2551. }
  2552. },
  2553. {
  2554. "location": {
  2555. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot.h"
  2556. },
  2557. "hashes": {
  2558. "md5": "88b79a72bc7fe966bb770648ea55587e"
  2559. }
  2560. },
  2561. {
  2562. "location": {
  2563. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color.h"
  2564. },
  2565. "hashes": {
  2566. "md5": "7a60ba0967b0441b9991a0cbca31810b"
  2567. }
  2568. },
  2569. {
  2570. "location": {
  2571. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name.h"
  2572. },
  2573. "hashes": {
  2574. "md5": "d5811ae99bfc284dc9e98ba3172b1119"
  2575. }
  2576. },
  2577. {
  2578. "location": {
  2579. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-deprecated.h"
  2580. },
  2581. "hashes": {
  2582. "md5": "7f05c4d984f2283941c955dc59be58ed"
  2583. }
  2584. },
  2585. {
  2586. "location": {
  2587. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-font.h"
  2588. },
  2589. "hashes": {
  2590. "md5": "d7ee1240d446af9d1b24937b8ebd74de"
  2591. }
  2592. },
  2593. {
  2594. "location": {
  2595. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.h"
  2596. },
  2597. "hashes": {
  2598. "md5": "e71405022c21180bb9fe727aa758cd29"
  2599. }
  2600. },
  2601. {
  2602. "location": {
  2603. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-math.h"
  2604. },
  2605. "hashes": {
  2606. "md5": "0da4f3b18ba2317ac94ae697e7fc9a81"
  2607. }
  2608. },
  2609. {
  2610. "location": {
  2611. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-meta.h"
  2612. },
  2613. "hashes": {
  2614. "md5": "7036bc3baf74206ebefe43d2004fac13"
  2615. }
  2616. },
  2617. {
  2618. "location": {
  2619. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-metrics.h"
  2620. },
  2621. "hashes": {
  2622. "md5": "afb89348296fe25677fd13a8e1fab75c"
  2623. }
  2624. },
  2625. {
  2626. "location": {
  2627. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shape.h"
  2628. },
  2629. "hashes": {
  2630. "md5": "9e959af0731f2bdcc3f12fc93cf6fc83"
  2631. }
  2632. },
  2633. {
  2634. "location": {
  2635. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-var.h"
  2636. },
  2637. "hashes": {
  2638. "md5": "1f00f7feb631ffad88770150180e67b2"
  2639. }
  2640. },
  2641. {
  2642. "location": {
  2643. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat.h"
  2644. },
  2645. "hashes": {
  2646. "md5": "0c8d18fc93cb1113eacb718e4ba198fe"
  2647. }
  2648. },
  2649. {
  2650. "location": {
  2651. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout.h"
  2652. },
  2653. "hashes": {
  2654. "md5": "4b4a1524be1b795c0704d88437c3aca3"
  2655. }
  2656. },
  2657. {
  2658. "location": {
  2659. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  2660. },
  2661. "hashes": {
  2662. "md5": "cc6ecf9b201913bfc4f25c97e91afbfa"
  2663. }
  2664. },
  2665. {
  2666. "location": {
  2667. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-meta.hh"
  2668. },
  2669. "hashes": {
  2670. "md5": "24131b8ef7b63f8257bd7f45fbeb32c6"
  2671. }
  2672. },
  2673. {
  2674. "location": {
  2675. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-mutex.hh"
  2676. },
  2677. "hashes": {
  2678. "md5": "99002e53372a94ec3f8c4ee03e753501"
  2679. }
  2680. },
  2681. {
  2682. "location": {
  2683. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-number.hh"
  2684. },
  2685. "hashes": {
  2686. "md5": "f80eb7a71558c6caeab4bf03cf3a7413"
  2687. }
  2688. },
  2689. {
  2690. "location": {
  2691. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-atomic.hh"
  2692. },
  2693. "hashes": {
  2694. "md5": "951183c1ed2181c1d42da812d09215d5"
  2695. }
  2696. },
  2697. {
  2698. "location": {
  2699. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-null.hh"
  2700. },
  2701. "hashes": {
  2702. "md5": "060426e619ef484f2b13a79544199615"
  2703. }
  2704. },
  2705. {
  2706. "location": {
  2707. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-algs.hh"
  2708. },
  2709. "hashes": {
  2710. "md5": "db4f6801f6deef0087e10e6e12315333"
  2711. }
  2712. },
  2713. {
  2714. "location": {
  2715. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  2716. },
  2717. "hashes": {
  2718. "md5": "8b8487829b25e2959f69e16f4e9eb104"
  2719. }
  2720. },
  2721. {
  2722. "location": {
  2723. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-debug.hh"
  2724. },
  2725. "hashes": {
  2726. "md5": "e04bd31cda6612ff06cce01d05304d32"
  2727. }
  2728. },
  2729. {
  2730. "location": {
  2731. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-array.hh"
  2732. },
  2733. "hashes": {
  2734. "md5": "8e209d94f950caa65d412ee8bde3f363"
  2735. }
  2736. },
  2737. {
  2738. "location": {
  2739. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-object.hh"
  2740. },
  2741. "hashes": {
  2742. "md5": "6153e989de17517cbccbfc32f6a96c2f"
  2743. }
  2744. },
  2745. {
  2746. "location": {
  2747. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-map.hh"
  2748. },
  2749. "hashes": {
  2750. "md5": "a7844bbe78b172a6055ed833c319c1dc"
  2751. }
  2752. },
  2753. {
  2754. "location": {
  2755. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2756. },
  2757. "hashes": {
  2758. "md5": "353126bead1e62cae5810c1e8fccbb19"
  2759. }
  2760. },
  2761. {
  2762. "location": {
  2763. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-unicode.hh"
  2764. },
  2765. "hashes": {
  2766. "md5": "16f1d95ff99040ed89da6afca082692e"
  2767. }
  2768. },
  2769. {
  2770. "location": {
  2771. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-set-digest.hh"
  2772. },
  2773. "hashes": {
  2774. "md5": "fc2d66eec3097c40c2c9869ea2a9ffa0"
  2775. }
  2776. },
  2777. {
  2778. "location": {
  2779. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-machinery.hh"
  2780. },
  2781. "hashes": {
  2782. "md5": "73d07cdd5dab7386ffb6cc0d01a97345"
  2783. }
  2784. },
  2785. {
  2786. "location": {
  2787. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-blob.hh"
  2788. },
  2789. "hashes": {
  2790. "md5": "3c8f2b1cfb0b66349f2bd7ce23523cd3"
  2791. }
  2792. },
  2793. {
  2794. "location": {
  2795. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-dispatch.hh"
  2796. },
  2797. "hashes": {
  2798. "md5": "241177eed3ec267287217798e8d1a58d"
  2799. }
  2800. },
  2801. {
  2802. "location": {
  2803. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-sanitize.hh"
  2804. },
  2805. "hashes": {
  2806. "md5": "188b6afcc937febb86d0ccfbca27de13"
  2807. }
  2808. },
  2809. {
  2810. "location": {
  2811. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-serialize.hh"
  2812. },
  2813. "hashes": {
  2814. "md5": "177a2f10f3f39c8d62b856177bcf27e2"
  2815. }
  2816. },
  2817. {
  2818. "location": {
  2819. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-pool.hh"
  2820. },
  2821. "hashes": {
  2822. "md5": "2b8edc0ca91f650a204d58a41b08b907"
  2823. }
  2824. },
  2825. {
  2826. "location": {
  2827. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shape.hh"
  2828. },
  2829. "hashes": {
  2830. "md5": "4bbcb40517826ccbe9c2cbf903f5ad2f"
  2831. }
  2832. },
  2833. {
  2834. "location": {
  2835. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-map.hh"
  2836. },
  2837. "hashes": {
  2838. "md5": "b21571cf9c50d022046d38338b608655"
  2839. }
  2840. },
  2841. {
  2842. "location": {
  2843. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.hh"
  2844. },
  2845. "hashes": {
  2846. "md5": "a446739860d83b5ccca95b4f2523c6c6"
  2847. }
  2848. },
  2849. {
  2850. "location": {
  2851. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.hh"
  2852. },
  2853. "hashes": {
  2854. "md5": "d44aee950fcb503187e9b13c8563875d"
  2855. }
  2856. },
  2857. {
  2858. "location": {
  2859. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.hh"
  2860. },
  2861. "hashes": {
  2862. "md5": "af006f8e6b4598a6997b531d6a2bcf3a"
  2863. }
  2864. },
  2865. {
  2866. "location": {
  2867. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper.hh"
  2868. },
  2869. "hashes": {
  2870. "md5": "1e85a9a61d4c84ad83a92ca2f9dabb31"
  2871. }
  2872. },
  2873. {
  2874. "location": {
  2875. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper-list.hh"
  2876. },
  2877. "hashes": {
  2878. "md5": "7b2ff6cdaf723facbc3bf755a21d0493"
  2879. }
  2880. },
  2881. {
  2882. "location": {
  2883. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape-plan.hh"
  2884. },
  2885. "hashes": {
  2886. "md5": "9aac62480877c6bc8123a9db028c168e"
  2887. }
  2888. },
  2889. {
  2890. "location": {
  2891. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face.hh"
  2892. },
  2893. "hashes": {
  2894. "md5": "263c856b357733232aec1f15d07df495"
  2895. }
  2896. },
  2897. {
  2898. "location": {
  2899. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face-table-list.hh"
  2900. },
  2901. "hashes": {
  2902. "md5": "ec044f287821ff4092a947c833c26ec9"
  2903. }
  2904. },
  2905. {
  2906. "location": {
  2907. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  2908. },
  2909. "hashes": {
  2910. "md5": "4c330fba65301df988cb2939d3dffa35"
  2911. }
  2912. },
  2913. {
  2914. "location": {
  2915. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset.hh"
  2916. },
  2917. "hashes": {
  2918. "md5": "25c6ff571fa13a6dbf66d4ef05cb5896"
  2919. }
  2920. },
  2921. {
  2922. "location": {
  2923. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset.h"
  2924. },
  2925. "hashes": {
  2926. "md5": "eeee85824ec99c2c18127bd7db14f692"
  2927. }
  2928. },
  2929. {
  2930. "location": {
  2931. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-input.hh"
  2932. },
  2933. "hashes": {
  2934. "md5": "f2c75216169b71f344f7adbea0941b4d"
  2935. }
  2936. },
  2937. {
  2938. "location": {
  2939. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-accelerator.hh"
  2940. },
  2941. "hashes": {
  2942. "md5": "ba12ab09aee1fb822ba02eb799a10522"
  2943. }
  2944. },
  2945. {
  2946. "location": {
  2947. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-multimap.hh"
  2948. },
  2949. "hashes": {
  2950. "md5": "1fb05badd1865ed9c8eb34899de34279"
  2951. }
  2952. },
  2953. {
  2954. "location": {
  2955. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-bimap.hh"
  2956. },
  2957. "hashes": {
  2958. "md5": "3236cfed6d09c1a8b030ba667bb8b41f"
  2959. }
  2960. }
  2961. ]
  2962. }
  2963. ]
  2964. }