hb-common.nativecodeanalysis.sarif 343 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299
  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::glyph_map\" 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::glyph_map"
  251. }
  252. },
  253. {
  254. "ruleId": "C26495",
  255. "message": {
  256. "text": "Die Variable \"hb_subset_plan_t::_glyphset_mathed\" 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::_glyphset_mathed"
  281. }
  282. },
  283. {
  284. "ruleId": "C26495",
  285. "message": {
  286. "text": "Die Variable \"hb_subset_plan_t::glyphs_requested\" 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::glyphs_requested"
  311. }
  312. },
  313. {
  314. "ruleId": "C26495",
  315. "message": {
  316. "text": "Die Variable \"hb_subset_plan_t::reverse_glyph_map\" 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::reverse_glyph_map"
  341. }
  342. },
  343. {
  344. "ruleId": "C26495",
  345. "message": {
  346. "text": "Die Variable \"hb_subset_plan_t::glyph_map_gsub\" 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::glyph_map_gsub"
  371. }
  372. },
  373. {
  374. "ruleId": "C26495",
  375. "message": {
  376. "text": "Die Variable \"hb_subset_plan_t::codepoint_to_glyph\" 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::codepoint_to_glyph"
  401. }
  402. },
  403. {
  404. "ruleId": "C26495",
  405. "message": {
  406. "text": "Die Variable \"hb_subset_plan_t::drop_tables\" 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::drop_tables"
  431. }
  432. },
  433. {
  434. "ruleId": "C26495",
  435. "message": {
  436. "text": "Die Variable \"hb_subset_plan_t::no_subset_tables\" 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::no_subset_tables"
  461. }
  462. },
  463. {
  464. "ruleId": "C26495",
  465. "message": {
  466. "text": "Die Variable \"hb_subset_plan_t::gpos_lookups\" 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::gpos_lookups"
  491. }
  492. },
  493. {
  494. "ruleId": "C26495",
  495. "message": {
  496. "text": "Die Variable \"hb_subset_plan_t::_glyphset_gsub\" 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::_glyphset_gsub"
  521. }
  522. },
  523. {
  524. "ruleId": "C26495",
  525. "message": {
  526. "text": "Die Variable \"hb_subset_plan_t::name_ids\" 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::name_ids"
  551. }
  552. },
  553. {
  554. "ruleId": "C26495",
  555. "message": {
  556. "text": "Die Variable \"hb_subset_plan_t::gpos_feature_record_cond_idx_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::gpos_feature_record_cond_idx_map"
  581. }
  582. },
  583. {
  584. "ruleId": "C26495",
  585. "message": {
  586. "text": "Die Variable \"hb_subset_plan_t::_glyphset\" 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::_glyphset"
  611. }
  612. },
  613. {
  614. "ruleId": "C26495",
  615. "message": {
  616. "text": "Die Variable \"hb_subset_plan_t::gsub_feature_record_cond_idx_map\" 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::gsub_feature_record_cond_idx_map"
  641. }
  642. },
  643. {
  644. "ruleId": "C26495",
  645. "message": {
  646. "text": "Die Variable \"hb_subset_plan_t::_glyphset_colred\" 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::_glyphset_colred"
  671. }
  672. },
  673. {
  674. "ruleId": "C26495",
  675. "message": {
  676. "text": "Die Variable \"hb_subset_plan_t::gsub_lookups\" 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::gsub_lookups"
  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::unicodes\" 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::unicodes"
  761. }
  762. },
  763. {
  764. "ruleId": "C26495",
  765. "message": {
  766. "text": "Die Variable \"hb_subset_plan_t::gpos_features\" 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::gpos_features"
  791. }
  792. },
  793. {
  794. "ruleId": "C26495",
  795. "message": {
  796. "text": "Die Variable \"hb_subset_plan_t::gsub_features\" 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::gsub_features"
  821. }
  822. },
  823. {
  824. "ruleId": "C26495",
  825. "message": {
  826. "text": "Die Variable \"hb_subset_plan_t::gpos_langsys\" 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::gpos_langsys"
  851. }
  852. },
  853. {
  854. "ruleId": "C26495",
  855. "message": {
  856. "text": "Die Variable \"hb_subset_plan_t::dest\" 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::dest"
  881. }
  882. },
  883. {
  884. "ruleId": "C26495",
  885. "message": {
  886. "text": "Die Variable \"hb_subset_plan_t::gsub_langsys\" 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::gsub_langsys"
  911. }
  912. },
  913. {
  914. "ruleId": "C26495",
  915. "message": {
  916. "text": "Die Variable \"hb_subset_plan_t::successful\" 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::successful"
  941. }
  942. },
  943. {
  944. "ruleId": "C26495",
  945. "message": {
  946. "text": "Die Variable \"hb_subset_plan_t::flags\" 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::flags"
  971. }
  972. },
  973. {
  974. "ruleId": "C26495",
  975. "message": {
  976. "text": "Die Variable \"hb_subset_plan_t::source\" 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::source"
  1001. }
  1002. },
  1003. {
  1004. "ruleId": "C26495",
  1005. "message": {
  1006. "text": "Die Variable \"hb_subset_plan_t::layout_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::layout_features"
  1031. }
  1032. },
  1033. {
  1034. "ruleId": "C26495",
  1035. "message": {
  1036. "text": "Die Variable \"hb_subset_plan_t::name_languages\" 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::name_languages"
  1061. }
  1062. },
  1063. {
  1064. "ruleId": "C26495",
  1065. "message": {
  1066. "text": "Die Variable \"hb_subset_plan_t::layout_scripts\" 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::layout_scripts"
  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 \"OT::Layout::Common::Coverage::iter_t::u\" 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/OT/Layout/Common/Coverage.hh"
  1613. },
  1614. "region": {
  1615. "startLine": 224,
  1616. "startColumn": 5,
  1617. "endLine": 224,
  1618. "endColumn": 5
  1619. }
  1620. },
  1621. "logicalLocations": [
  1622. {
  1623. "decoratedName": "??0iter_t@Coverage@Common@Layout@OT@@QEAA@AEBU1234@@Z",
  1624. "kind": "function"
  1625. }
  1626. ]
  1627. }
  1628. ],
  1629. "properties": {
  1630. "targetSymbol": "OT::Layout::Common::Coverage::iter_t::u"
  1631. }
  1632. },
  1633. {
  1634. "ruleId": "C6001",
  1635. "message": {
  1636. "text": "Nicht initialisierter Speicher \"newBits\" wird verwendet."
  1637. },
  1638. "locations": [
  1639. {
  1640. "physicalLocation": {
  1641. "artifactLocation": {
  1642. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  1643. },
  1644. "region": {
  1645. "startLine": 256,
  1646. "startColumn": 7,
  1647. "endLine": 256,
  1648. "endColumn": 7
  1649. }
  1650. },
  1651. "logicalLocations": [
  1652. {
  1653. "decoratedName": "?_update_unicode_ranges@OS2@OT@@QEBAXPEBUhb_set_t@@QEAU?$IntType@I$03@2@@Z",
  1654. "kind": "function"
  1655. }
  1656. ]
  1657. }
  1658. ],
  1659. "codeFlows": [
  1660. {
  1661. "threadFlows": [
  1662. {
  1663. "locations": [
  1664. {
  1665. "location": {
  1666. "physicalLocation": {
  1667. "artifactLocation": {
  1668. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  1669. },
  1670. "region": {
  1671. "startLine": 254,
  1672. "startColumn": 14
  1673. }
  1674. },
  1675. "message": {
  1676. "text": "\"newBits\" ist nicht initialisiert"
  1677. }
  1678. },
  1679. "kinds": [
  1680. "declaration"
  1681. ],
  1682. "importance": "essential"
  1683. },
  1684. {
  1685. "location": {
  1686. "physicalLocation": {
  1687. "artifactLocation": {
  1688. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  1689. },
  1690. "region": {
  1691. "startLine": 255,
  1692. "startColumn": 23
  1693. }
  1694. }
  1695. },
  1696. "importance": "unimportant"
  1697. },
  1698. {
  1699. "location": {
  1700. "physicalLocation": {
  1701. "artifactLocation": {
  1702. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  1703. },
  1704. "region": {
  1705. "startLine": 255,
  1706. "startColumn": 32
  1707. }
  1708. },
  1709. "message": {
  1710. "text": "In diese Schleife eintreten (Annahme: \"i<4\")"
  1711. }
  1712. },
  1713. "kinds": [
  1714. "branch"
  1715. ],
  1716. "importance": "important"
  1717. },
  1718. {
  1719. "location": {
  1720. "physicalLocation": {
  1721. "artifactLocation": {
  1722. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  1723. },
  1724. "region": {
  1725. "startLine": 256,
  1726. "startColumn": 18
  1727. }
  1728. },
  1729. "message": {
  1730. "text": "\"newBits\" ist eine Ausgabe von \"OT::IntType<unsigned int,4>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  1731. }
  1732. },
  1733. "kinds": [
  1734. "declaration"
  1735. ],
  1736. "importance": "important"
  1737. },
  1738. {
  1739. "location": {
  1740. "physicalLocation": {
  1741. "artifactLocation": {
  1742. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  1743. },
  1744. "region": {
  1745. "startLine": 256,
  1746. "startColumn": 7
  1747. }
  1748. },
  1749. "message": {
  1750. "text": "\"newBits\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  1751. }
  1752. },
  1753. "kinds": [
  1754. "usage"
  1755. ],
  1756. "importance": "essential"
  1757. }
  1758. ]
  1759. }
  1760. ]
  1761. }
  1762. ]
  1763. },
  1764. {
  1765. "ruleId": "C26495",
  1766. "message": {
  1767. "text": "Die Variable \"OT::CmapSubtableFormat4::accelerator_t::segCount\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1768. },
  1769. "locations": [
  1770. {
  1771. "physicalLocation": {
  1772. "artifactLocation": {
  1773. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  1774. },
  1775. "region": {
  1776. "startLine": 384,
  1777. "startColumn": 5,
  1778. "endLine": 384,
  1779. "endColumn": 5
  1780. }
  1781. },
  1782. "logicalLocations": [
  1783. {
  1784. "decoratedName": "??0accelerator_t@CmapSubtableFormat4@OT@@QEAA@XZ",
  1785. "kind": "function"
  1786. }
  1787. ]
  1788. }
  1789. ],
  1790. "properties": {
  1791. "targetSymbol": "OT::CmapSubtableFormat4::accelerator_t::segCount"
  1792. }
  1793. },
  1794. {
  1795. "ruleId": "C26495",
  1796. "message": {
  1797. "text": "Die Variable \"OT::CmapSubtableFormat4::accelerator_t::glyphIdArray\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1798. },
  1799. "locations": [
  1800. {
  1801. "physicalLocation": {
  1802. "artifactLocation": {
  1803. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  1804. },
  1805. "region": {
  1806. "startLine": 384,
  1807. "startColumn": 5,
  1808. "endLine": 384,
  1809. "endColumn": 5
  1810. }
  1811. },
  1812. "logicalLocations": [
  1813. {
  1814. "decoratedName": "??0accelerator_t@CmapSubtableFormat4@OT@@QEAA@XZ",
  1815. "kind": "function"
  1816. }
  1817. ]
  1818. }
  1819. ],
  1820. "properties": {
  1821. "targetSymbol": "OT::CmapSubtableFormat4::accelerator_t::glyphIdArray"
  1822. }
  1823. },
  1824. {
  1825. "ruleId": "C26495",
  1826. "message": {
  1827. "text": "Die Variable \"OT::CmapSubtableFormat4::accelerator_t::idRangeOffset\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1828. },
  1829. "locations": [
  1830. {
  1831. "physicalLocation": {
  1832. "artifactLocation": {
  1833. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  1834. },
  1835. "region": {
  1836. "startLine": 384,
  1837. "startColumn": 5,
  1838. "endLine": 384,
  1839. "endColumn": 5
  1840. }
  1841. },
  1842. "logicalLocations": [
  1843. {
  1844. "decoratedName": "??0accelerator_t@CmapSubtableFormat4@OT@@QEAA@XZ",
  1845. "kind": "function"
  1846. }
  1847. ]
  1848. }
  1849. ],
  1850. "properties": {
  1851. "targetSymbol": "OT::CmapSubtableFormat4::accelerator_t::idRangeOffset"
  1852. }
  1853. },
  1854. {
  1855. "ruleId": "C26495",
  1856. "message": {
  1857. "text": "Die Variable \"OT::CmapSubtableFormat4::accelerator_t::glyphIdArrayLength\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1858. },
  1859. "locations": [
  1860. {
  1861. "physicalLocation": {
  1862. "artifactLocation": {
  1863. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  1864. },
  1865. "region": {
  1866. "startLine": 384,
  1867. "startColumn": 5,
  1868. "endLine": 384,
  1869. "endColumn": 5
  1870. }
  1871. },
  1872. "logicalLocations": [
  1873. {
  1874. "decoratedName": "??0accelerator_t@CmapSubtableFormat4@OT@@QEAA@XZ",
  1875. "kind": "function"
  1876. }
  1877. ]
  1878. }
  1879. ],
  1880. "properties": {
  1881. "targetSymbol": "OT::CmapSubtableFormat4::accelerator_t::glyphIdArrayLength"
  1882. }
  1883. },
  1884. {
  1885. "ruleId": "C26495",
  1886. "message": {
  1887. "text": "Die Variable \"OT::CmapSubtableFormat4::accelerator_t::startCount\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1888. },
  1889. "locations": [
  1890. {
  1891. "physicalLocation": {
  1892. "artifactLocation": {
  1893. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  1894. },
  1895. "region": {
  1896. "startLine": 384,
  1897. "startColumn": 5,
  1898. "endLine": 384,
  1899. "endColumn": 5
  1900. }
  1901. },
  1902. "logicalLocations": [
  1903. {
  1904. "decoratedName": "??0accelerator_t@CmapSubtableFormat4@OT@@QEAA@XZ",
  1905. "kind": "function"
  1906. }
  1907. ]
  1908. }
  1909. ],
  1910. "properties": {
  1911. "targetSymbol": "OT::CmapSubtableFormat4::accelerator_t::startCount"
  1912. }
  1913. },
  1914. {
  1915. "ruleId": "C26495",
  1916. "message": {
  1917. "text": "Die Variable \"OT::CmapSubtableFormat4::accelerator_t::idDelta\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1918. },
  1919. "locations": [
  1920. {
  1921. "physicalLocation": {
  1922. "artifactLocation": {
  1923. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  1924. },
  1925. "region": {
  1926. "startLine": 384,
  1927. "startColumn": 5,
  1928. "endLine": 384,
  1929. "endColumn": 5
  1930. }
  1931. },
  1932. "logicalLocations": [
  1933. {
  1934. "decoratedName": "??0accelerator_t@CmapSubtableFormat4@OT@@QEAA@XZ",
  1935. "kind": "function"
  1936. }
  1937. ]
  1938. }
  1939. ],
  1940. "properties": {
  1941. "targetSymbol": "OT::CmapSubtableFormat4::accelerator_t::idDelta"
  1942. }
  1943. },
  1944. {
  1945. "ruleId": "C26495",
  1946. "message": {
  1947. "text": "Die Variable \"OT::CmapSubtableFormat4::accelerator_t::endCount\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1948. },
  1949. "locations": [
  1950. {
  1951. "physicalLocation": {
  1952. "artifactLocation": {
  1953. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  1954. },
  1955. "region": {
  1956. "startLine": 384,
  1957. "startColumn": 5,
  1958. "endLine": 384,
  1959. "endColumn": 5
  1960. }
  1961. },
  1962. "logicalLocations": [
  1963. {
  1964. "decoratedName": "??0accelerator_t@CmapSubtableFormat4@OT@@QEAA@XZ",
  1965. "kind": "function"
  1966. }
  1967. ]
  1968. }
  1969. ],
  1970. "properties": {
  1971. "targetSymbol": "OT::CmapSubtableFormat4::accelerator_t::endCount"
  1972. }
  1973. },
  1974. {
  1975. "ruleId": "C6001",
  1976. "message": {
  1977. "text": "Nicht initialisierter Speicher \"rec\" wird verwendet."
  1978. },
  1979. "locations": [
  1980. {
  1981. "physicalLocation": {
  1982. "artifactLocation": {
  1983. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  1984. },
  1985. "region": {
  1986. "startLine": 946,
  1987. "startColumn": 4,
  1988. "endLine": 946,
  1989. "endColumn": 4
  1990. }
  1991. },
  1992. "logicalLocations": [
  1993. {
  1994. "decoratedName": "?copy@DefaultUVS@OT@@QEBAPEAU12@PEAUhb_serialize_context_t@@PEBUhb_set_t@@@Z",
  1995. "kind": "function"
  1996. }
  1997. ]
  1998. }
  1999. ],
  2000. "codeFlows": [
  2001. {
  2002. "threadFlows": [
  2003. {
  2004. "locations": [
  2005. {
  2006. "location": {
  2007. "physicalLocation": {
  2008. "artifactLocation": {
  2009. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2010. },
  2011. "region": {
  2012. "startLine": 919,
  2013. "startColumn": 17
  2014. }
  2015. }
  2016. },
  2017. "importance": "unimportant"
  2018. },
  2019. {
  2020. "location": {
  2021. "physicalLocation": {
  2022. "artifactLocation": {
  2023. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2024. },
  2025. "region": {
  2026. "startLine": 920,
  2027. "startColumn": 9
  2028. }
  2029. }
  2030. },
  2031. "importance": "unimportant"
  2032. },
  2033. {
  2034. "location": {
  2035. "physicalLocation": {
  2036. "artifactLocation": {
  2037. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2038. },
  2039. "region": {
  2040. "startLine": 921,
  2041. "startColumn": 10
  2042. }
  2043. }
  2044. },
  2045. "importance": "unimportant"
  2046. },
  2047. {
  2048. "location": {
  2049. "physicalLocation": {
  2050. "artifactLocation": {
  2051. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2052. },
  2053. "region": {
  2054. "startLine": 923,
  2055. "startColumn": 14
  2056. }
  2057. }
  2058. },
  2059. "importance": "unimportant"
  2060. },
  2061. {
  2062. "location": {
  2063. "physicalLocation": {
  2064. "artifactLocation": {
  2065. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2066. },
  2067. "region": {
  2068. "startLine": 924,
  2069. "startColumn": 9
  2070. }
  2071. }
  2072. },
  2073. "importance": "unimportant"
  2074. },
  2075. {
  2076. "location": {
  2077. "physicalLocation": {
  2078. "artifactLocation": {
  2079. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2080. },
  2081. "region": {
  2082. "startLine": 925,
  2083. "startColumn": 9
  2084. }
  2085. }
  2086. },
  2087. "importance": "unimportant"
  2088. },
  2089. {
  2090. "location": {
  2091. "physicalLocation": {
  2092. "artifactLocation": {
  2093. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2094. },
  2095. "region": {
  2096. "startLine": 926,
  2097. "startColumn": 14
  2098. }
  2099. }
  2100. },
  2101. "importance": "unimportant"
  2102. },
  2103. {
  2104. "location": {
  2105. "physicalLocation": {
  2106. "artifactLocation": {
  2107. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2108. },
  2109. "region": {
  2110. "startLine": 928,
  2111. "startColumn": 19
  2112. }
  2113. }
  2114. },
  2115. "importance": "unimportant"
  2116. },
  2117. {
  2118. "location": {
  2119. "physicalLocation": {
  2120. "artifactLocation": {
  2121. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2122. },
  2123. "region": {
  2124. "startLine": 930,
  2125. "startColumn": 22
  2126. }
  2127. }
  2128. },
  2129. "importance": "unimportant"
  2130. },
  2131. {
  2132. "location": {
  2133. "physicalLocation": {
  2134. "artifactLocation": {
  2135. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2136. },
  2137. "region": {
  2138. "startLine": 931,
  2139. "startColumn": 22
  2140. }
  2141. }
  2142. },
  2143. "importance": "unimportant"
  2144. },
  2145. {
  2146. "location": {
  2147. "physicalLocation": {
  2148. "artifactLocation": {
  2149. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2150. },
  2151. "region": {
  2152. "startLine": 933,
  2153. "startColumn": 27
  2154. }
  2155. }
  2156. },
  2157. "importance": "unimportant"
  2158. },
  2159. {
  2160. "location": {
  2161. "physicalLocation": {
  2162. "artifactLocation": {
  2163. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2164. },
  2165. "region": {
  2166. "startLine": 934,
  2167. "startColumn": 20
  2168. }
  2169. }
  2170. },
  2171. "importance": "unimportant"
  2172. },
  2173. {
  2174. "location": {
  2175. "physicalLocation": {
  2176. "artifactLocation": {
  2177. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2178. },
  2179. "region": {
  2180. "startLine": 936,
  2181. "startColumn": 13
  2182. }
  2183. }
  2184. },
  2185. "importance": "unimportant"
  2186. },
  2187. {
  2188. "location": {
  2189. "physicalLocation": {
  2190. "artifactLocation": {
  2191. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2192. },
  2193. "region": {
  2194. "startLine": 938,
  2195. "startColumn": 12
  2196. }
  2197. }
  2198. },
  2199. "importance": "unimportant"
  2200. },
  2201. {
  2202. "location": {
  2203. "physicalLocation": {
  2204. "artifactLocation": {
  2205. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2206. },
  2207. "region": {
  2208. "startLine": 940,
  2209. "startColumn": 10
  2210. }
  2211. }
  2212. },
  2213. "importance": "unimportant"
  2214. },
  2215. {
  2216. "location": {
  2217. "physicalLocation": {
  2218. "artifactLocation": {
  2219. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2220. },
  2221. "region": {
  2222. "startLine": 941,
  2223. "startColumn": 8
  2224. }
  2225. }
  2226. },
  2227. "importance": "unimportant"
  2228. },
  2229. {
  2230. "location": {
  2231. "physicalLocation": {
  2232. "artifactLocation": {
  2233. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2234. },
  2235. "region": {
  2236. "startLine": 943,
  2237. "startColumn": 19
  2238. }
  2239. }
  2240. },
  2241. "importance": "unimportant"
  2242. },
  2243. {
  2244. "location": {
  2245. "physicalLocation": {
  2246. "artifactLocation": {
  2247. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2248. },
  2249. "region": {
  2250. "startLine": 945,
  2251. "startColumn": 22
  2252. }
  2253. },
  2254. "message": {
  2255. "text": "\"rec\" ist nicht initialisiert"
  2256. }
  2257. },
  2258. "kinds": [
  2259. "declaration"
  2260. ],
  2261. "importance": "essential"
  2262. },
  2263. {
  2264. "location": {
  2265. "physicalLocation": {
  2266. "artifactLocation": {
  2267. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2268. },
  2269. "region": {
  2270. "startLine": 946,
  2271. "startColumn": 26
  2272. }
  2273. },
  2274. "message": {
  2275. "text": "\"rec\" ist eine Ausgabe von \"OT::IntType<unsigned int,3>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  2276. }
  2277. },
  2278. "kinds": [
  2279. "declaration"
  2280. ],
  2281. "importance": "important"
  2282. },
  2283. {
  2284. "location": {
  2285. "physicalLocation": {
  2286. "artifactLocation": {
  2287. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2288. },
  2289. "region": {
  2290. "startLine": 947,
  2291. "startColumn": 24
  2292. }
  2293. }
  2294. },
  2295. "importance": "unimportant"
  2296. },
  2297. {
  2298. "location": {
  2299. "physicalLocation": {
  2300. "artifactLocation": {
  2301. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2302. },
  2303. "region": {
  2304. "startLine": 948,
  2305. "startColumn": 31
  2306. }
  2307. }
  2308. },
  2309. "importance": "unimportant"
  2310. },
  2311. {
  2312. "location": {
  2313. "physicalLocation": {
  2314. "artifactLocation": {
  2315. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2316. },
  2317. "region": {
  2318. "startLine": 949,
  2319. "startColumn": 10
  2320. }
  2321. }
  2322. },
  2323. "importance": "unimportant"
  2324. },
  2325. {
  2326. "location": {
  2327. "physicalLocation": {
  2328. "artifactLocation": {
  2329. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2330. },
  2331. "region": {
  2332. "startLine": 946,
  2333. "startColumn": 4
  2334. }
  2335. },
  2336. "message": {
  2337. "text": "\"rec\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  2338. }
  2339. },
  2340. "kinds": [
  2341. "usage"
  2342. ],
  2343. "importance": "essential"
  2344. }
  2345. ]
  2346. }
  2347. ]
  2348. }
  2349. ]
  2350. },
  2351. {
  2352. "ruleId": "C6001",
  2353. "message": {
  2354. "text": "Nicht initialisierter Speicher \"rec\" wird verwendet."
  2355. },
  2356. "locations": [
  2357. {
  2358. "physicalLocation": {
  2359. "artifactLocation": {
  2360. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2361. },
  2362. "region": {
  2363. "startLine": 980,
  2364. "startColumn": 6,
  2365. "endLine": 980,
  2366. "endColumn": 6
  2367. }
  2368. },
  2369. "logicalLocations": [
  2370. {
  2371. "decoratedName": "?copy@DefaultUVS@OT@@QEBAPEAU12@PEAUhb_serialize_context_t@@PEBUhb_set_t@@@Z",
  2372. "kind": "function"
  2373. }
  2374. ]
  2375. }
  2376. ],
  2377. "codeFlows": [
  2378. {
  2379. "threadFlows": [
  2380. {
  2381. "locations": [
  2382. {
  2383. "location": {
  2384. "physicalLocation": {
  2385. "artifactLocation": {
  2386. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2387. },
  2388. "region": {
  2389. "startLine": 919,
  2390. "startColumn": 17
  2391. }
  2392. }
  2393. },
  2394. "importance": "unimportant"
  2395. },
  2396. {
  2397. "location": {
  2398. "physicalLocation": {
  2399. "artifactLocation": {
  2400. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2401. },
  2402. "region": {
  2403. "startLine": 920,
  2404. "startColumn": 9
  2405. }
  2406. }
  2407. },
  2408. "importance": "unimportant"
  2409. },
  2410. {
  2411. "location": {
  2412. "physicalLocation": {
  2413. "artifactLocation": {
  2414. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2415. },
  2416. "region": {
  2417. "startLine": 921,
  2418. "startColumn": 10
  2419. }
  2420. }
  2421. },
  2422. "importance": "unimportant"
  2423. },
  2424. {
  2425. "location": {
  2426. "physicalLocation": {
  2427. "artifactLocation": {
  2428. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2429. },
  2430. "region": {
  2431. "startLine": 923,
  2432. "startColumn": 14
  2433. }
  2434. }
  2435. },
  2436. "importance": "unimportant"
  2437. },
  2438. {
  2439. "location": {
  2440. "physicalLocation": {
  2441. "artifactLocation": {
  2442. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2443. },
  2444. "region": {
  2445. "startLine": 924,
  2446. "startColumn": 9
  2447. }
  2448. }
  2449. },
  2450. "importance": "unimportant"
  2451. },
  2452. {
  2453. "location": {
  2454. "physicalLocation": {
  2455. "artifactLocation": {
  2456. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2457. },
  2458. "region": {
  2459. "startLine": 925,
  2460. "startColumn": 9
  2461. }
  2462. }
  2463. },
  2464. "importance": "unimportant"
  2465. },
  2466. {
  2467. "location": {
  2468. "physicalLocation": {
  2469. "artifactLocation": {
  2470. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2471. },
  2472. "region": {
  2473. "startLine": 926,
  2474. "startColumn": 14
  2475. }
  2476. }
  2477. },
  2478. "importance": "unimportant"
  2479. },
  2480. {
  2481. "location": {
  2482. "physicalLocation": {
  2483. "artifactLocation": {
  2484. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2485. },
  2486. "region": {
  2487. "startLine": 928,
  2488. "startColumn": 19
  2489. }
  2490. }
  2491. },
  2492. "importance": "unimportant"
  2493. },
  2494. {
  2495. "location": {
  2496. "physicalLocation": {
  2497. "artifactLocation": {
  2498. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2499. },
  2500. "region": {
  2501. "startLine": 964,
  2502. "startColumn": 22
  2503. }
  2504. }
  2505. },
  2506. "importance": "unimportant"
  2507. },
  2508. {
  2509. "location": {
  2510. "physicalLocation": {
  2511. "artifactLocation": {
  2512. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2513. },
  2514. "region": {
  2515. "startLine": 965,
  2516. "startColumn": 11
  2517. }
  2518. }
  2519. },
  2520. "importance": "unimportant"
  2521. },
  2522. {
  2523. "location": {
  2524. "physicalLocation": {
  2525. "artifactLocation": {
  2526. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2527. },
  2528. "region": {
  2529. "startLine": 967,
  2530. "startColumn": 41
  2531. }
  2532. }
  2533. },
  2534. "importance": "unimportant"
  2535. },
  2536. {
  2537. "location": {
  2538. "physicalLocation": {
  2539. "artifactLocation": {
  2540. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2541. },
  2542. "region": {
  2543. "startLine": 967,
  2544. "startColumn": 37
  2545. }
  2546. }
  2547. },
  2548. "importance": "unimportant"
  2549. },
  2550. {
  2551. "location": {
  2552. "physicalLocation": {
  2553. "artifactLocation": {
  2554. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2555. },
  2556. "region": {
  2557. "startLine": 969,
  2558. "startColumn": 17
  2559. }
  2560. }
  2561. },
  2562. "importance": "unimportant"
  2563. },
  2564. {
  2565. "location": {
  2566. "physicalLocation": {
  2567. "artifactLocation": {
  2568. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2569. },
  2570. "region": {
  2571. "startLine": 970,
  2572. "startColumn": 17
  2573. }
  2574. }
  2575. },
  2576. "importance": "unimportant"
  2577. },
  2578. {
  2579. "location": {
  2580. "physicalLocation": {
  2581. "artifactLocation": {
  2582. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2583. },
  2584. "region": {
  2585. "startLine": 972,
  2586. "startColumn": 36
  2587. }
  2588. }
  2589. },
  2590. "importance": "unimportant"
  2591. },
  2592. {
  2593. "location": {
  2594. "physicalLocation": {
  2595. "artifactLocation": {
  2596. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2597. },
  2598. "region": {
  2599. "startLine": 974,
  2600. "startColumn": 10
  2601. }
  2602. }
  2603. },
  2604. "importance": "unimportant"
  2605. },
  2606. {
  2607. "location": {
  2608. "physicalLocation": {
  2609. "artifactLocation": {
  2610. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2611. },
  2612. "region": {
  2613. "startLine": 975,
  2614. "startColumn": 17
  2615. }
  2616. }
  2617. },
  2618. "importance": "unimportant"
  2619. },
  2620. {
  2621. "location": {
  2622. "physicalLocation": {
  2623. "artifactLocation": {
  2624. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2625. },
  2626. "region": {
  2627. "startLine": 976,
  2628. "startColumn": 15
  2629. }
  2630. }
  2631. },
  2632. "importance": "unimportant"
  2633. },
  2634. {
  2635. "location": {
  2636. "physicalLocation": {
  2637. "artifactLocation": {
  2638. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2639. },
  2640. "region": {
  2641. "startLine": 972,
  2642. "startColumn": 36
  2643. }
  2644. }
  2645. },
  2646. "importance": "unimportant"
  2647. },
  2648. {
  2649. "location": {
  2650. "physicalLocation": {
  2651. "artifactLocation": {
  2652. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2653. },
  2654. "region": {
  2655. "startLine": 974,
  2656. "startColumn": 10
  2657. }
  2658. }
  2659. },
  2660. "importance": "unimportant"
  2661. },
  2662. {
  2663. "location": {
  2664. "physicalLocation": {
  2665. "artifactLocation": {
  2666. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2667. },
  2668. "region": {
  2669. "startLine": 975,
  2670. "startColumn": 17
  2671. }
  2672. }
  2673. },
  2674. "importance": "unimportant"
  2675. },
  2676. {
  2677. "location": {
  2678. "physicalLocation": {
  2679. "artifactLocation": {
  2680. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2681. },
  2682. "region": {
  2683. "startLine": 977,
  2684. "startColumn": 30
  2685. }
  2686. }
  2687. },
  2688. "importance": "unimportant"
  2689. },
  2690. {
  2691. "location": {
  2692. "physicalLocation": {
  2693. "artifactLocation": {
  2694. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2695. },
  2696. "region": {
  2697. "startLine": 979,
  2698. "startColumn": 24
  2699. }
  2700. },
  2701. "message": {
  2702. "text": "\"rec\" ist nicht initialisiert"
  2703. }
  2704. },
  2705. "kinds": [
  2706. "declaration"
  2707. ],
  2708. "importance": "essential"
  2709. },
  2710. {
  2711. "location": {
  2712. "physicalLocation": {
  2713. "artifactLocation": {
  2714. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2715. },
  2716. "region": {
  2717. "startLine": 980,
  2718. "startColumn": 28
  2719. }
  2720. },
  2721. "message": {
  2722. "text": "\"rec\" ist eine Ausgabe von \"OT::IntType<unsigned int,3>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  2723. }
  2724. },
  2725. "kinds": [
  2726. "declaration"
  2727. ],
  2728. "importance": "important"
  2729. },
  2730. {
  2731. "location": {
  2732. "physicalLocation": {
  2733. "artifactLocation": {
  2734. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2735. },
  2736. "region": {
  2737. "startLine": 981,
  2738. "startColumn": 26
  2739. }
  2740. }
  2741. },
  2742. "importance": "unimportant"
  2743. },
  2744. {
  2745. "location": {
  2746. "physicalLocation": {
  2747. "artifactLocation": {
  2748. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2749. },
  2750. "region": {
  2751. "startLine": 982,
  2752. "startColumn": 33
  2753. }
  2754. }
  2755. },
  2756. "importance": "unimportant"
  2757. },
  2758. {
  2759. "location": {
  2760. "physicalLocation": {
  2761. "artifactLocation": {
  2762. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2763. },
  2764. "region": {
  2765. "startLine": 984,
  2766. "startColumn": 15
  2767. }
  2768. }
  2769. },
  2770. "importance": "unimportant"
  2771. },
  2772. {
  2773. "location": {
  2774. "physicalLocation": {
  2775. "artifactLocation": {
  2776. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2777. },
  2778. "region": {
  2779. "startLine": 985,
  2780. "startColumn": 12
  2781. }
  2782. }
  2783. },
  2784. "importance": "unimportant"
  2785. },
  2786. {
  2787. "location": {
  2788. "physicalLocation": {
  2789. "artifactLocation": {
  2790. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2791. },
  2792. "region": {
  2793. "startLine": 980,
  2794. "startColumn": 6
  2795. }
  2796. },
  2797. "message": {
  2798. "text": "\"rec\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  2799. }
  2800. },
  2801. "kinds": [
  2802. "usage"
  2803. ],
  2804. "importance": "essential"
  2805. }
  2806. ]
  2807. }
  2808. ]
  2809. }
  2810. ]
  2811. },
  2812. {
  2813. "ruleId": "C6001",
  2814. "message": {
  2815. "text": "Nicht initialisierter Speicher \"rec\" wird verwendet."
  2816. },
  2817. "locations": [
  2818. {
  2819. "physicalLocation": {
  2820. "artifactLocation": {
  2821. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2822. },
  2823. "region": {
  2824. "startLine": 993,
  2825. "startColumn": 2,
  2826. "endLine": 993,
  2827. "endColumn": 2
  2828. }
  2829. },
  2830. "logicalLocations": [
  2831. {
  2832. "decoratedName": "?copy@DefaultUVS@OT@@QEBAPEAU12@PEAUhb_serialize_context_t@@PEBUhb_set_t@@@Z",
  2833. "kind": "function"
  2834. }
  2835. ]
  2836. }
  2837. ],
  2838. "codeFlows": [
  2839. {
  2840. "threadFlows": [
  2841. {
  2842. "locations": [
  2843. {
  2844. "location": {
  2845. "physicalLocation": {
  2846. "artifactLocation": {
  2847. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2848. },
  2849. "region": {
  2850. "startLine": 919,
  2851. "startColumn": 17
  2852. }
  2853. }
  2854. },
  2855. "importance": "unimportant"
  2856. },
  2857. {
  2858. "location": {
  2859. "physicalLocation": {
  2860. "artifactLocation": {
  2861. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2862. },
  2863. "region": {
  2864. "startLine": 920,
  2865. "startColumn": 9
  2866. }
  2867. }
  2868. },
  2869. "importance": "unimportant"
  2870. },
  2871. {
  2872. "location": {
  2873. "physicalLocation": {
  2874. "artifactLocation": {
  2875. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2876. },
  2877. "region": {
  2878. "startLine": 921,
  2879. "startColumn": 10
  2880. }
  2881. }
  2882. },
  2883. "importance": "unimportant"
  2884. },
  2885. {
  2886. "location": {
  2887. "physicalLocation": {
  2888. "artifactLocation": {
  2889. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2890. },
  2891. "region": {
  2892. "startLine": 923,
  2893. "startColumn": 14
  2894. }
  2895. }
  2896. },
  2897. "importance": "unimportant"
  2898. },
  2899. {
  2900. "location": {
  2901. "physicalLocation": {
  2902. "artifactLocation": {
  2903. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2904. },
  2905. "region": {
  2906. "startLine": 924,
  2907. "startColumn": 9
  2908. }
  2909. }
  2910. },
  2911. "importance": "unimportant"
  2912. },
  2913. {
  2914. "location": {
  2915. "physicalLocation": {
  2916. "artifactLocation": {
  2917. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2918. },
  2919. "region": {
  2920. "startLine": 925,
  2921. "startColumn": 9
  2922. }
  2923. }
  2924. },
  2925. "importance": "unimportant"
  2926. },
  2927. {
  2928. "location": {
  2929. "physicalLocation": {
  2930. "artifactLocation": {
  2931. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2932. },
  2933. "region": {
  2934. "startLine": 926,
  2935. "startColumn": 14
  2936. }
  2937. }
  2938. },
  2939. "importance": "unimportant"
  2940. },
  2941. {
  2942. "location": {
  2943. "physicalLocation": {
  2944. "artifactLocation": {
  2945. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2946. },
  2947. "region": {
  2948. "startLine": 928,
  2949. "startColumn": 19
  2950. }
  2951. }
  2952. },
  2953. "importance": "unimportant"
  2954. },
  2955. {
  2956. "location": {
  2957. "physicalLocation": {
  2958. "artifactLocation": {
  2959. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2960. },
  2961. "region": {
  2962. "startLine": 964,
  2963. "startColumn": 22
  2964. }
  2965. }
  2966. },
  2967. "importance": "unimportant"
  2968. },
  2969. {
  2970. "location": {
  2971. "physicalLocation": {
  2972. "artifactLocation": {
  2973. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2974. },
  2975. "region": {
  2976. "startLine": 965,
  2977. "startColumn": 11
  2978. }
  2979. }
  2980. },
  2981. "importance": "unimportant"
  2982. },
  2983. {
  2984. "location": {
  2985. "physicalLocation": {
  2986. "artifactLocation": {
  2987. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  2988. },
  2989. "region": {
  2990. "startLine": 967,
  2991. "startColumn": 41
  2992. }
  2993. }
  2994. },
  2995. "importance": "unimportant"
  2996. },
  2997. {
  2998. "location": {
  2999. "physicalLocation": {
  3000. "artifactLocation": {
  3001. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3002. },
  3003. "region": {
  3004. "startLine": 967,
  3005. "startColumn": 37
  3006. }
  3007. }
  3008. },
  3009. "importance": "unimportant"
  3010. },
  3011. {
  3012. "location": {
  3013. "physicalLocation": {
  3014. "artifactLocation": {
  3015. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3016. },
  3017. "region": {
  3018. "startLine": 969,
  3019. "startColumn": 17
  3020. }
  3021. }
  3022. },
  3023. "importance": "unimportant"
  3024. },
  3025. {
  3026. "location": {
  3027. "physicalLocation": {
  3028. "artifactLocation": {
  3029. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3030. },
  3031. "region": {
  3032. "startLine": 970,
  3033. "startColumn": 17
  3034. }
  3035. }
  3036. },
  3037. "importance": "unimportant"
  3038. },
  3039. {
  3040. "location": {
  3041. "physicalLocation": {
  3042. "artifactLocation": {
  3043. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3044. },
  3045. "region": {
  3046. "startLine": 972,
  3047. "startColumn": 36
  3048. }
  3049. }
  3050. },
  3051. "importance": "unimportant"
  3052. },
  3053. {
  3054. "location": {
  3055. "physicalLocation": {
  3056. "artifactLocation": {
  3057. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3058. },
  3059. "region": {
  3060. "startLine": 974,
  3061. "startColumn": 10
  3062. }
  3063. }
  3064. },
  3065. "importance": "unimportant"
  3066. },
  3067. {
  3068. "location": {
  3069. "physicalLocation": {
  3070. "artifactLocation": {
  3071. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3072. },
  3073. "region": {
  3074. "startLine": 975,
  3075. "startColumn": 17
  3076. }
  3077. }
  3078. },
  3079. "importance": "unimportant"
  3080. },
  3081. {
  3082. "location": {
  3083. "physicalLocation": {
  3084. "artifactLocation": {
  3085. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3086. },
  3087. "region": {
  3088. "startLine": 976,
  3089. "startColumn": 15
  3090. }
  3091. }
  3092. },
  3093. "importance": "unimportant"
  3094. },
  3095. {
  3096. "location": {
  3097. "physicalLocation": {
  3098. "artifactLocation": {
  3099. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3100. },
  3101. "region": {
  3102. "startLine": 972,
  3103. "startColumn": 36
  3104. }
  3105. }
  3106. },
  3107. "importance": "unimportant"
  3108. },
  3109. {
  3110. "location": {
  3111. "physicalLocation": {
  3112. "artifactLocation": {
  3113. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3114. },
  3115. "region": {
  3116. "startLine": 967,
  3117. "startColumn": 41
  3118. }
  3119. }
  3120. },
  3121. "importance": "unimportant"
  3122. },
  3123. {
  3124. "location": {
  3125. "physicalLocation": {
  3126. "artifactLocation": {
  3127. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3128. },
  3129. "region": {
  3130. "startLine": 990,
  3131. "startColumn": 20
  3132. }
  3133. }
  3134. },
  3135. "importance": "unimportant"
  3136. },
  3137. {
  3138. "location": {
  3139. "physicalLocation": {
  3140. "artifactLocation": {
  3141. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3142. },
  3143. "region": {
  3144. "startLine": 992,
  3145. "startColumn": 20
  3146. }
  3147. },
  3148. "message": {
  3149. "text": "\"rec\" ist nicht initialisiert"
  3150. }
  3151. },
  3152. "kinds": [
  3153. "declaration"
  3154. ],
  3155. "importance": "essential"
  3156. },
  3157. {
  3158. "location": {
  3159. "physicalLocation": {
  3160. "artifactLocation": {
  3161. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3162. },
  3163. "region": {
  3164. "startLine": 993,
  3165. "startColumn": 24
  3166. }
  3167. },
  3168. "message": {
  3169. "text": "\"rec\" ist eine Ausgabe von \"OT::IntType<unsigned int,3>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  3170. }
  3171. },
  3172. "kinds": [
  3173. "declaration"
  3174. ],
  3175. "importance": "important"
  3176. },
  3177. {
  3178. "location": {
  3179. "physicalLocation": {
  3180. "artifactLocation": {
  3181. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3182. },
  3183. "region": {
  3184. "startLine": 994,
  3185. "startColumn": 22
  3186. }
  3187. }
  3188. },
  3189. "importance": "unimportant"
  3190. },
  3191. {
  3192. "location": {
  3193. "physicalLocation": {
  3194. "artifactLocation": {
  3195. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3196. },
  3197. "region": {
  3198. "startLine": 995,
  3199. "startColumn": 29
  3200. }
  3201. }
  3202. },
  3203. "importance": "unimportant"
  3204. },
  3205. {
  3206. "location": {
  3207. "physicalLocation": {
  3208. "artifactLocation": {
  3209. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3210. },
  3211. "region": {
  3212. "startLine": 993,
  3213. "startColumn": 2
  3214. }
  3215. },
  3216. "message": {
  3217. "text": "\"rec\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  3218. }
  3219. },
  3220. "kinds": [
  3221. "usage"
  3222. ],
  3223. "importance": "essential"
  3224. }
  3225. ]
  3226. }
  3227. ]
  3228. }
  3229. ]
  3230. },
  3231. {
  3232. "ruleId": "C6001",
  3233. "message": {
  3234. "text": "Nicht initialisierter Speicher \"key\" wird verwendet."
  3235. },
  3236. "locations": [
  3237. {
  3238. "physicalLocation": {
  3239. "artifactLocation": {
  3240. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3241. },
  3242. "region": {
  3243. "startLine": 2002,
  3244. "startColumn": 5,
  3245. "endLine": 2002,
  3246. "endColumn": 5
  3247. }
  3248. },
  3249. "logicalLocations": [
  3250. {
  3251. "decoratedName": "?find_subtable@cmap@OT@@IEBAPEBUCmapSubtable@2@II@Z",
  3252. "kind": "function"
  3253. }
  3254. ]
  3255. }
  3256. ],
  3257. "codeFlows": [
  3258. {
  3259. "threadFlows": [
  3260. {
  3261. "locations": [
  3262. {
  3263. "location": {
  3264. "physicalLocation": {
  3265. "artifactLocation": {
  3266. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3267. },
  3268. "region": {
  3269. "startLine": 2001,
  3270. "startColumn": 20
  3271. }
  3272. },
  3273. "message": {
  3274. "text": "\"key\" ist nicht initialisiert"
  3275. }
  3276. },
  3277. "kinds": [
  3278. "declaration"
  3279. ],
  3280. "importance": "essential"
  3281. },
  3282. {
  3283. "location": {
  3284. "physicalLocation": {
  3285. "artifactLocation": {
  3286. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3287. },
  3288. "region": {
  3289. "startLine": 2002,
  3290. "startColumn": 20
  3291. }
  3292. },
  3293. "message": {
  3294. "text": "\"key\" ist eine Ausgabe von \"OT::IntType<unsigned short,2>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  3295. }
  3296. },
  3297. "kinds": [
  3298. "declaration"
  3299. ],
  3300. "importance": "important"
  3301. },
  3302. {
  3303. "location": {
  3304. "physicalLocation": {
  3305. "artifactLocation": {
  3306. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3307. },
  3308. "region": {
  3309. "startLine": 2003,
  3310. "startColumn": 20
  3311. }
  3312. }
  3313. },
  3314. "importance": "unimportant"
  3315. },
  3316. {
  3317. "location": {
  3318. "physicalLocation": {
  3319. "artifactLocation": {
  3320. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3321. },
  3322. "region": {
  3323. "startLine": 2005,
  3324. "startColumn": 27
  3325. }
  3326. }
  3327. },
  3328. "importance": "unimportant"
  3329. },
  3330. {
  3331. "location": {
  3332. "physicalLocation": {
  3333. "artifactLocation": {
  3334. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3335. },
  3336. "region": {
  3337. "startLine": 2002,
  3338. "startColumn": 5
  3339. }
  3340. },
  3341. "message": {
  3342. "text": "\"key\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  3343. }
  3344. },
  3345. "kinds": [
  3346. "usage"
  3347. ],
  3348. "importance": "essential"
  3349. }
  3350. ]
  3351. }
  3352. ]
  3353. }
  3354. ]
  3355. },
  3356. {
  3357. "ruleId": "C6001",
  3358. "message": {
  3359. "text": "Nicht initialisierter Speicher \"key\" wird verwendet."
  3360. },
  3361. "locations": [
  3362. {
  3363. "physicalLocation": {
  3364. "artifactLocation": {
  3365. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3366. },
  3367. "region": {
  3368. "startLine": 2016,
  3369. "startColumn": 5,
  3370. "endLine": 2016,
  3371. "endColumn": 5
  3372. }
  3373. },
  3374. "logicalLocations": [
  3375. {
  3376. "decoratedName": "?find_encodingrec@cmap@OT@@IEBAPEBUEncodingRecord@2@II@Z",
  3377. "kind": "function"
  3378. }
  3379. ]
  3380. }
  3381. ],
  3382. "codeFlows": [
  3383. {
  3384. "threadFlows": [
  3385. {
  3386. "locations": [
  3387. {
  3388. "location": {
  3389. "physicalLocation": {
  3390. "artifactLocation": {
  3391. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3392. },
  3393. "region": {
  3394. "startLine": 2015,
  3395. "startColumn": 20
  3396. }
  3397. },
  3398. "message": {
  3399. "text": "\"key\" ist nicht initialisiert"
  3400. }
  3401. },
  3402. "kinds": [
  3403. "declaration"
  3404. ],
  3405. "importance": "essential"
  3406. },
  3407. {
  3408. "location": {
  3409. "physicalLocation": {
  3410. "artifactLocation": {
  3411. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3412. },
  3413. "region": {
  3414. "startLine": 2016,
  3415. "startColumn": 20
  3416. }
  3417. },
  3418. "message": {
  3419. "text": "\"key\" ist eine Ausgabe von \"OT::IntType<unsigned short,2>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  3420. }
  3421. },
  3422. "kinds": [
  3423. "declaration"
  3424. ],
  3425. "importance": "important"
  3426. },
  3427. {
  3428. "location": {
  3429. "physicalLocation": {
  3430. "artifactLocation": {
  3431. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3432. },
  3433. "region": {
  3434. "startLine": 2017,
  3435. "startColumn": 20
  3436. }
  3437. }
  3438. },
  3439. "importance": "unimportant"
  3440. },
  3441. {
  3442. "location": {
  3443. "physicalLocation": {
  3444. "artifactLocation": {
  3445. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3446. },
  3447. "region": {
  3448. "startLine": 2019,
  3449. "startColumn": 5
  3450. }
  3451. }
  3452. },
  3453. "importance": "unimportant"
  3454. },
  3455. {
  3456. "location": {
  3457. "physicalLocation": {
  3458. "artifactLocation": {
  3459. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  3460. },
  3461. "region": {
  3462. "startLine": 2016,
  3463. "startColumn": 5
  3464. }
  3465. },
  3466. "message": {
  3467. "text": "\"key\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  3468. }
  3469. },
  3470. "kinds": [
  3471. "usage"
  3472. ],
  3473. "importance": "essential"
  3474. }
  3475. ]
  3476. }
  3477. ]
  3478. }
  3479. ]
  3480. },
  3481. {
  3482. "ruleId": "C6001",
  3483. "message": {
  3484. "text": "Nicht initialisierter Speicher \"record\" wird verwendet."
  3485. },
  3486. "locations": [
  3487. {
  3488. "physicalLocation": {
  3489. "artifactLocation": {
  3490. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3491. },
  3492. "region": {
  3493. "startLine": 1071,
  3494. "startColumn": 7,
  3495. "endLine": 1071,
  3496. "endColumn": 7
  3497. }
  3498. },
  3499. "logicalLocations": [
  3500. {
  3501. "decoratedName": "?serialize_clip_records@ClipList@OT@@QEBAIPEAUhb_serialize_context_t@@AEBUhb_set_t@@AEBUhb_map_t@@@Z",
  3502. "kind": "function"
  3503. }
  3504. ]
  3505. }
  3506. ],
  3507. "codeFlows": [
  3508. {
  3509. "threadFlows": [
  3510. {
  3511. "locations": [
  3512. {
  3513. "location": {
  3514. "physicalLocation": {
  3515. "artifactLocation": {
  3516. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3517. },
  3518. "region": {
  3519. "startLine": 1032,
  3520. "startColumn": 5
  3521. }
  3522. }
  3523. },
  3524. "importance": "unimportant"
  3525. },
  3526. {
  3527. "location": {
  3528. "physicalLocation": {
  3529. "artifactLocation": {
  3530. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3531. },
  3532. "region": {
  3533. "startLine": 1033,
  3534. "startColumn": 26
  3535. }
  3536. }
  3537. },
  3538. "importance": "unimportant"
  3539. },
  3540. {
  3541. "location": {
  3542. "physicalLocation": {
  3543. "artifactLocation": {
  3544. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3545. },
  3546. "region": {
  3547. "startLine": 1037,
  3548. "startColumn": 14
  3549. }
  3550. }
  3551. },
  3552. "importance": "unimportant"
  3553. },
  3554. {
  3555. "location": {
  3556. "physicalLocation": {
  3557. "artifactLocation": {
  3558. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3559. },
  3560. "region": {
  3561. "startLine": 1039,
  3562. "startColumn": 20
  3563. }
  3564. }
  3565. },
  3566. "importance": "unimportant"
  3567. },
  3568. {
  3569. "location": {
  3570. "physicalLocation": {
  3571. "artifactLocation": {
  3572. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3573. },
  3574. "region": {
  3575. "startLine": 1040,
  3576. "startColumn": 20
  3577. }
  3578. }
  3579. },
  3580. "importance": "unimportant"
  3581. },
  3582. {
  3583. "location": {
  3584. "physicalLocation": {
  3585. "artifactLocation": {
  3586. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3587. },
  3588. "region": {
  3589. "startLine": 1042,
  3590. "startColumn": 14
  3591. }
  3592. }
  3593. },
  3594. "importance": "unimportant"
  3595. },
  3596. {
  3597. "location": {
  3598. "physicalLocation": {
  3599. "artifactLocation": {
  3600. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3601. },
  3602. "region": {
  3603. "startLine": 1043,
  3604. "startColumn": 14
  3605. }
  3606. }
  3607. },
  3608. "importance": "unimportant"
  3609. },
  3610. {
  3611. "location": {
  3612. "physicalLocation": {
  3613. "artifactLocation": {
  3614. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3615. },
  3616. "region": {
  3617. "startLine": 1044,
  3618. "startColumn": 45
  3619. }
  3620. }
  3621. },
  3622. "importance": "unimportant"
  3623. },
  3624. {
  3625. "location": {
  3626. "physicalLocation": {
  3627. "artifactLocation": {
  3628. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3629. },
  3630. "region": {
  3631. "startLine": 1070,
  3632. "startColumn": 18
  3633. }
  3634. },
  3635. "message": {
  3636. "text": "\"record\" ist nicht initialisiert"
  3637. }
  3638. },
  3639. "kinds": [
  3640. "declaration"
  3641. ],
  3642. "importance": "essential"
  3643. },
  3644. {
  3645. "location": {
  3646. "physicalLocation": {
  3647. "artifactLocation": {
  3648. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3649. },
  3650. "region": {
  3651. "startLine": 1071,
  3652. "startColumn": 27
  3653. }
  3654. },
  3655. "message": {
  3656. "text": "\"record\" ist eine Ausgabe von \"OT::IntType<unsigned short,2>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  3657. }
  3658. },
  3659. "kinds": [
  3660. "declaration"
  3661. ],
  3662. "importance": "important"
  3663. },
  3664. {
  3665. "location": {
  3666. "physicalLocation": {
  3667. "artifactLocation": {
  3668. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3669. },
  3670. "region": {
  3671. "startLine": 1072,
  3672. "startColumn": 25
  3673. }
  3674. }
  3675. },
  3676. "importance": "unimportant"
  3677. },
  3678. {
  3679. "location": {
  3680. "physicalLocation": {
  3681. "artifactLocation": {
  3682. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3683. },
  3684. "region": {
  3685. "startLine": 1073,
  3686. "startColumn": 22
  3687. }
  3688. }
  3689. },
  3690. "importance": "unimportant"
  3691. },
  3692. {
  3693. "location": {
  3694. "physicalLocation": {
  3695. "artifactLocation": {
  3696. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3697. },
  3698. "region": {
  3699. "startLine": 1071,
  3700. "startColumn": 7
  3701. }
  3702. },
  3703. "message": {
  3704. "text": "\"record\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  3705. }
  3706. },
  3707. "kinds": [
  3708. "usage"
  3709. ],
  3710. "importance": "essential"
  3711. }
  3712. ]
  3713. }
  3714. ]
  3715. }
  3716. ]
  3717. },
  3718. {
  3719. "ruleId": "C6001",
  3720. "message": {
  3721. "text": "Nicht initialisierter Speicher \"record\" wird verwendet."
  3722. },
  3723. "locations": [
  3724. {
  3725. "physicalLocation": {
  3726. "artifactLocation": {
  3727. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3728. },
  3729. "region": {
  3730. "startLine": 1056,
  3731. "startColumn": 7,
  3732. "endLine": 1056,
  3733. "endColumn": 7
  3734. }
  3735. },
  3736. "logicalLocations": [
  3737. {
  3738. "decoratedName": "?serialize_clip_records@ClipList@OT@@QEBAIPEAUhb_serialize_context_t@@AEBUhb_set_t@@AEBUhb_map_t@@@Z",
  3739. "kind": "function"
  3740. }
  3741. ]
  3742. }
  3743. ],
  3744. "codeFlows": [
  3745. {
  3746. "threadFlows": [
  3747. {
  3748. "locations": [
  3749. {
  3750. "location": {
  3751. "physicalLocation": {
  3752. "artifactLocation": {
  3753. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3754. },
  3755. "region": {
  3756. "startLine": 1032,
  3757. "startColumn": 5
  3758. }
  3759. }
  3760. },
  3761. "importance": "unimportant"
  3762. },
  3763. {
  3764. "location": {
  3765. "physicalLocation": {
  3766. "artifactLocation": {
  3767. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3768. },
  3769. "region": {
  3770. "startLine": 1033,
  3771. "startColumn": 26
  3772. }
  3773. }
  3774. },
  3775. "importance": "unimportant"
  3776. },
  3777. {
  3778. "location": {
  3779. "physicalLocation": {
  3780. "artifactLocation": {
  3781. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3782. },
  3783. "region": {
  3784. "startLine": 1037,
  3785. "startColumn": 14
  3786. }
  3787. }
  3788. },
  3789. "importance": "unimportant"
  3790. },
  3791. {
  3792. "location": {
  3793. "physicalLocation": {
  3794. "artifactLocation": {
  3795. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3796. },
  3797. "region": {
  3798. "startLine": 1039,
  3799. "startColumn": 20
  3800. }
  3801. }
  3802. },
  3803. "importance": "unimportant"
  3804. },
  3805. {
  3806. "location": {
  3807. "physicalLocation": {
  3808. "artifactLocation": {
  3809. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3810. },
  3811. "region": {
  3812. "startLine": 1040,
  3813. "startColumn": 20
  3814. }
  3815. }
  3816. },
  3817. "importance": "unimportant"
  3818. },
  3819. {
  3820. "location": {
  3821. "physicalLocation": {
  3822. "artifactLocation": {
  3823. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3824. },
  3825. "region": {
  3826. "startLine": 1042,
  3827. "startColumn": 14
  3828. }
  3829. }
  3830. },
  3831. "importance": "unimportant"
  3832. },
  3833. {
  3834. "location": {
  3835. "physicalLocation": {
  3836. "artifactLocation": {
  3837. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3838. },
  3839. "region": {
  3840. "startLine": 1043,
  3841. "startColumn": 14
  3842. }
  3843. }
  3844. },
  3845. "importance": "unimportant"
  3846. },
  3847. {
  3848. "location": {
  3849. "physicalLocation": {
  3850. "artifactLocation": {
  3851. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3852. },
  3853. "region": {
  3854. "startLine": 1044,
  3855. "startColumn": 45
  3856. }
  3857. }
  3858. },
  3859. "importance": "unimportant"
  3860. },
  3861. {
  3862. "location": {
  3863. "physicalLocation": {
  3864. "artifactLocation": {
  3865. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3866. },
  3867. "region": {
  3868. "startLine": 1044,
  3869. "startColumn": 31
  3870. }
  3871. }
  3872. },
  3873. "importance": "unimportant"
  3874. },
  3875. {
  3876. "location": {
  3877. "physicalLocation": {
  3878. "artifactLocation": {
  3879. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3880. },
  3881. "region": {
  3882. "startLine": 1046,
  3883. "startColumn": 13
  3884. }
  3885. }
  3886. },
  3887. "importance": "unimportant"
  3888. },
  3889. {
  3890. "location": {
  3891. "physicalLocation": {
  3892. "artifactLocation": {
  3893. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3894. },
  3895. "region": {
  3896. "startLine": 1048,
  3897. "startColumn": 14
  3898. }
  3899. }
  3900. },
  3901. "importance": "unimportant"
  3902. },
  3903. {
  3904. "location": {
  3905. "physicalLocation": {
  3906. "artifactLocation": {
  3907. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3908. },
  3909. "region": {
  3910. "startLine": 1049,
  3911. "startColumn": 29
  3912. }
  3913. }
  3914. },
  3915. "importance": "unimportant"
  3916. },
  3917. {
  3918. "location": {
  3919. "physicalLocation": {
  3920. "artifactLocation": {
  3921. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3922. },
  3923. "region": {
  3924. "startLine": 1055,
  3925. "startColumn": 18
  3926. }
  3927. },
  3928. "message": {
  3929. "text": "\"record\" ist nicht initialisiert"
  3930. }
  3931. },
  3932. "kinds": [
  3933. "declaration"
  3934. ],
  3935. "importance": "essential"
  3936. },
  3937. {
  3938. "location": {
  3939. "physicalLocation": {
  3940. "artifactLocation": {
  3941. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3942. },
  3943. "region": {
  3944. "startLine": 1056,
  3945. "startColumn": 27
  3946. }
  3947. },
  3948. "message": {
  3949. "text": "\"record\" ist eine Ausgabe von \"OT::IntType<unsigned short,2>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  3950. }
  3951. },
  3952. "kinds": [
  3953. "declaration"
  3954. ],
  3955. "importance": "important"
  3956. },
  3957. {
  3958. "location": {
  3959. "physicalLocation": {
  3960. "artifactLocation": {
  3961. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3962. },
  3963. "region": {
  3964. "startLine": 1057,
  3965. "startColumn": 25
  3966. }
  3967. }
  3968. },
  3969. "importance": "unimportant"
  3970. },
  3971. {
  3972. "location": {
  3973. "physicalLocation": {
  3974. "artifactLocation": {
  3975. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3976. },
  3977. "region": {
  3978. "startLine": 1058,
  3979. "startColumn": 22
  3980. }
  3981. }
  3982. },
  3983. "importance": "unimportant"
  3984. },
  3985. {
  3986. "location": {
  3987. "physicalLocation": {
  3988. "artifactLocation": {
  3989. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  3990. },
  3991. "region": {
  3992. "startLine": 1056,
  3993. "startColumn": 7
  3994. }
  3995. },
  3996. "message": {
  3997. "text": "\"record\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  3998. }
  3999. },
  4000. "kinds": [
  4001. "usage"
  4002. ],
  4003. "importance": "essential"
  4004. }
  4005. ]
  4006. }
  4007. ]
  4008. }
  4009. ]
  4010. },
  4011. {
  4012. "ruleId": "C26495",
  4013. "message": {
  4014. "text": "Die Variable \"OT::hvarvvar_subset_plan_t::var_store\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4015. },
  4016. "locations": [
  4017. {
  4018. "physicalLocation": {
  4019. "artifactLocation": {
  4020. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-hvar-table.hh"
  4021. },
  4022. "region": {
  4023. "startLine": 163,
  4024. "startColumn": 3,
  4025. "endLine": 163,
  4026. "endColumn": 3
  4027. }
  4028. },
  4029. "logicalLocations": [
  4030. {
  4031. "decoratedName": "??0hvarvvar_subset_plan_t@OT@@QEAA@XZ",
  4032. "kind": "function"
  4033. }
  4034. ]
  4035. }
  4036. ],
  4037. "properties": {
  4038. "targetSymbol": "OT::hvarvvar_subset_plan_t::var_store"
  4039. }
  4040. },
  4041. {
  4042. "ruleId": "C26495",
  4043. "message": {
  4044. "text": "Die Variable \"OT::hvarvvar_subset_plan_t::adv_set\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4045. },
  4046. "locations": [
  4047. {
  4048. "physicalLocation": {
  4049. "artifactLocation": {
  4050. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-hvar-table.hh"
  4051. },
  4052. "region": {
  4053. "startLine": 163,
  4054. "startColumn": 3,
  4055. "endLine": 163,
  4056. "endColumn": 3
  4057. }
  4058. },
  4059. "logicalLocations": [
  4060. {
  4061. "decoratedName": "??0hvarvvar_subset_plan_t@OT@@QEAA@XZ",
  4062. "kind": "function"
  4063. }
  4064. ]
  4065. }
  4066. ],
  4067. "properties": {
  4068. "targetSymbol": "OT::hvarvvar_subset_plan_t::adv_set"
  4069. }
  4070. },
  4071. {
  4072. "ruleId": "C26495",
  4073. "message": {
  4074. "text": "Die Variable \"OT::GlyphVariationData::tuple_iterator_t::data_offset\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4075. },
  4076. "locations": [
  4077. {
  4078. "physicalLocation": {
  4079. "artifactLocation": {
  4080. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-gvar-table.hh"
  4081. },
  4082. "region": {
  4083. "startLine": 257,
  4084. "startColumn": 3,
  4085. "endLine": 257,
  4086. "endColumn": 3
  4087. }
  4088. },
  4089. "logicalLocations": [
  4090. {
  4091. "decoratedName": "??0tuple_iterator_t@GlyphVariationData@OT@@QEAA@XZ",
  4092. "kind": "function"
  4093. }
  4094. ]
  4095. }
  4096. ],
  4097. "properties": {
  4098. "targetSymbol": "OT::GlyphVariationData::tuple_iterator_t::data_offset"
  4099. }
  4100. },
  4101. {
  4102. "ruleId": "C26495",
  4103. "message": {
  4104. "text": "Die Variable \"OT::GlyphVariationData::tuple_iterator_t::axis_count\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4105. },
  4106. "locations": [
  4107. {
  4108. "physicalLocation": {
  4109. "artifactLocation": {
  4110. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-gvar-table.hh"
  4111. },
  4112. "region": {
  4113. "startLine": 257,
  4114. "startColumn": 3,
  4115. "endLine": 257,
  4116. "endColumn": 3
  4117. }
  4118. },
  4119. "logicalLocations": [
  4120. {
  4121. "decoratedName": "??0tuple_iterator_t@GlyphVariationData@OT@@QEAA@XZ",
  4122. "kind": "function"
  4123. }
  4124. ]
  4125. }
  4126. ],
  4127. "properties": {
  4128. "targetSymbol": "OT::GlyphVariationData::tuple_iterator_t::axis_count"
  4129. }
  4130. },
  4131. {
  4132. "ruleId": "C26495",
  4133. "message": {
  4134. "text": "Die Variable \"OT::GlyphVariationData::tuple_iterator_t::var_data\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4135. },
  4136. "locations": [
  4137. {
  4138. "physicalLocation": {
  4139. "artifactLocation": {
  4140. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-gvar-table.hh"
  4141. },
  4142. "region": {
  4143. "startLine": 257,
  4144. "startColumn": 3,
  4145. "endLine": 257,
  4146. "endColumn": 3
  4147. }
  4148. },
  4149. "logicalLocations": [
  4150. {
  4151. "decoratedName": "??0tuple_iterator_t@GlyphVariationData@OT@@QEAA@XZ",
  4152. "kind": "function"
  4153. }
  4154. ]
  4155. }
  4156. ],
  4157. "properties": {
  4158. "targetSymbol": "OT::GlyphVariationData::tuple_iterator_t::var_data"
  4159. }
  4160. },
  4161. {
  4162. "ruleId": "C26495",
  4163. "message": {
  4164. "text": "Die Variable \"OT::GlyphVariationData::tuple_iterator_t::index\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4165. },
  4166. "locations": [
  4167. {
  4168. "physicalLocation": {
  4169. "artifactLocation": {
  4170. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-gvar-table.hh"
  4171. },
  4172. "region": {
  4173. "startLine": 257,
  4174. "startColumn": 3,
  4175. "endLine": 257,
  4176. "endColumn": 3
  4177. }
  4178. },
  4179. "logicalLocations": [
  4180. {
  4181. "decoratedName": "??0tuple_iterator_t@GlyphVariationData@OT@@QEAA@XZ",
  4182. "kind": "function"
  4183. }
  4184. ]
  4185. }
  4186. ],
  4187. "properties": {
  4188. "targetSymbol": "OT::GlyphVariationData::tuple_iterator_t::index"
  4189. }
  4190. },
  4191. {
  4192. "ruleId": "C26495",
  4193. "message": {
  4194. "text": "Die Variable \"OT::GlyphVariationData::tuple_iterator_t::current_tuple\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4195. },
  4196. "locations": [
  4197. {
  4198. "physicalLocation": {
  4199. "artifactLocation": {
  4200. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-gvar-table.hh"
  4201. },
  4202. "region": {
  4203. "startLine": 257,
  4204. "startColumn": 3,
  4205. "endLine": 257,
  4206. "endColumn": 3
  4207. }
  4208. },
  4209. "logicalLocations": [
  4210. {
  4211. "decoratedName": "??0tuple_iterator_t@GlyphVariationData@OT@@QEAA@XZ",
  4212. "kind": "function"
  4213. }
  4214. ]
  4215. }
  4216. ],
  4217. "properties": {
  4218. "targetSymbol": "OT::GlyphVariationData::tuple_iterator_t::current_tuple"
  4219. }
  4220. },
  4221. {
  4222. "ruleId": "C26439",
  4223. "message": {
  4224. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  4225. },
  4226. "locations": [
  4227. {
  4228. "physicalLocation": {
  4229. "artifactLocation": {
  4230. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  4231. },
  4232. "region": {
  4233. "startLine": 45,
  4234. "startColumn": 3,
  4235. "endLine": 45,
  4236. "endColumn": 3
  4237. }
  4238. },
  4239. "logicalLocations": [
  4240. {
  4241. "decoratedName": "??0?$hb_sparseset_t@Uhb_bit_set_invertible_t@@@@QEAA@$$QEAU0@@Z",
  4242. "kind": "function"
  4243. }
  4244. ]
  4245. }
  4246. ]
  4247. },
  4248. {
  4249. "ruleId": "C26439",
  4250. "message": {
  4251. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  4252. },
  4253. "locations": [
  4254. {
  4255. "physicalLocation": {
  4256. "artifactLocation": {
  4257. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  4258. },
  4259. "region": {
  4260. "startLine": 47,
  4261. "startColumn": 3,
  4262. "endLine": 47,
  4263. "endColumn": 3
  4264. }
  4265. },
  4266. "logicalLocations": [
  4267. {
  4268. "decoratedName": "??0?$hb_hashmap_t@II$00@@QEAA@$$QEAU0@@Z",
  4269. "kind": "function"
  4270. }
  4271. ]
  4272. }
  4273. ]
  4274. },
  4275. {
  4276. "ruleId": "C26439",
  4277. "message": {
  4278. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  4279. },
  4280. "locations": [
  4281. {
  4282. "physicalLocation": {
  4283. "artifactLocation": {
  4284. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-vector.hh"
  4285. },
  4286. "region": {
  4287. "startLine": 67,
  4288. "startColumn": 3,
  4289. "endLine": 67,
  4290. "endColumn": 3
  4291. }
  4292. },
  4293. "logicalLocations": [
  4294. {
  4295. "decoratedName": "??0?$hb_vector_t@ULayerRecord@OT@@$0A@@@QEAA@$$QEAU0@@Z",
  4296. "kind": "function"
  4297. }
  4298. ]
  4299. }
  4300. ]
  4301. },
  4302. {
  4303. "ruleId": "C6319",
  4304. "message": {
  4305. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4306. },
  4307. "locations": [
  4308. {
  4309. "physicalLocation": {
  4310. "artifactLocation": {
  4311. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4312. },
  4313. "region": {
  4314. "startLine": 213,
  4315. "startColumn": 9,
  4316. "endLine": 213,
  4317. "endColumn": 13
  4318. }
  4319. },
  4320. "logicalLocations": [
  4321. {
  4322. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBUEncodingRecord@OT@@@@AEBUEncodingRecord@OT@@@@QEBA?AU?$hb_array_t@$$CBUEncodingRecord@OT@@@@XZ",
  4323. "kind": "function"
  4324. }
  4325. ]
  4326. }
  4327. ]
  4328. },
  4329. {
  4330. "ruleId": "C6319",
  4331. "message": {
  4332. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4333. },
  4334. "locations": [
  4335. {
  4336. "physicalLocation": {
  4337. "artifactLocation": {
  4338. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4339. },
  4340. "region": {
  4341. "startLine": 213,
  4342. "startColumn": 9,
  4343. "endLine": 213,
  4344. "endColumn": 13
  4345. }
  4346. },
  4347. "logicalLocations": [
  4348. {
  4349. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBUUVSMapping@OT@@@@AEBUUVSMapping@OT@@@@QEBA?AU?$hb_array_t@$$CBUUVSMapping@OT@@@@XZ",
  4350. "kind": "function"
  4351. }
  4352. ]
  4353. }
  4354. ]
  4355. },
  4356. {
  4357. "ruleId": "C6319",
  4358. "message": {
  4359. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4360. },
  4361. "locations": [
  4362. {
  4363. "physicalLocation": {
  4364. "artifactLocation": {
  4365. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4366. },
  4367. "region": {
  4368. "startLine": 213,
  4369. "startColumn": 9,
  4370. "endLine": 213,
  4371. "endColumn": 13
  4372. }
  4373. },
  4374. "logicalLocations": [
  4375. {
  4376. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$Record@UScript@OT@@@OT@@@@AEBU?$Record@UScript@OT@@@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$Record@UScript@OT@@@OT@@@@XZ",
  4377. "kind": "function"
  4378. }
  4379. ]
  4380. }
  4381. ]
  4382. },
  4383. {
  4384. "ruleId": "C6319",
  4385. "message": {
  4386. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4387. },
  4388. "locations": [
  4389. {
  4390. "physicalLocation": {
  4391. "artifactLocation": {
  4392. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4393. },
  4394. "region": {
  4395. "startLine": 213,
  4396. "startColumn": 9,
  4397. "endLine": 213,
  4398. "endColumn": 13
  4399. }
  4400. },
  4401. "logicalLocations": [
  4402. {
  4403. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$Record@ULangSys@OT@@@OT@@@@AEBU?$Record@ULangSys@OT@@@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$Record@ULangSys@OT@@@OT@@@@XZ",
  4404. "kind": "function"
  4405. }
  4406. ]
  4407. }
  4408. ]
  4409. },
  4410. {
  4411. "ruleId": "C6319",
  4412. "message": {
  4413. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4414. },
  4415. "locations": [
  4416. {
  4417. "physicalLocation": {
  4418. "artifactLocation": {
  4419. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4420. },
  4421. "region": {
  4422. "startLine": 213,
  4423. "startColumn": 9,
  4424. "endLine": 213,
  4425. "endColumn": 13
  4426. }
  4427. },
  4428. "logicalLocations": [
  4429. {
  4430. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$IntType@G$01@OT@@@@AEBU?$IntType@G$01@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$IntType@G$01@OT@@@@XZ",
  4431. "kind": "function"
  4432. }
  4433. ]
  4434. }
  4435. ]
  4436. },
  4437. {
  4438. "ruleId": "C6319",
  4439. "message": {
  4440. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4441. },
  4442. "locations": [
  4443. {
  4444. "physicalLocation": {
  4445. "artifactLocation": {
  4446. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4447. },
  4448. "region": {
  4449. "startLine": 213,
  4450. "startColumn": 9,
  4451. "endLine": 213,
  4452. "endColumn": 13
  4453. }
  4454. },
  4455. "logicalLocations": [
  4456. {
  4457. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$OffsetTo@UPaint@OT@@U?$IntType@I$03@2@$00@OT@@@@AEBU?$OffsetTo@UPaint@OT@@U?$IntType@I$03@2@$00@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$OffsetTo@UPaint@OT@@U?$IntType@I$03@2@$00@OT@@@@XZ",
  4458. "kind": "function"
  4459. }
  4460. ]
  4461. }
  4462. ]
  4463. },
  4464. {
  4465. "ruleId": "C6319",
  4466. "message": {
  4467. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4468. },
  4469. "locations": [
  4470. {
  4471. "physicalLocation": {
  4472. "artifactLocation": {
  4473. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4474. },
  4475. "region": {
  4476. "startLine": 213,
  4477. "startColumn": 9,
  4478. "endLine": 213,
  4479. "endColumn": 13
  4480. }
  4481. },
  4482. "logicalLocations": [
  4483. {
  4484. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@Uitem_t@?$hb_hashmap_t@II$00@@@@AEAUitem_t@?$hb_hashmap_t@II$00@@@@QEBA?AU?$hb_array_t@Uitem_t@?$hb_hashmap_t@II$00@@@@XZ",
  4485. "kind": "function"
  4486. }
  4487. ]
  4488. }
  4489. ]
  4490. },
  4491. {
  4492. "ruleId": "C26495",
  4493. "message": {
  4494. "text": "Die Variable \"OT::glyf_impl::SubsetGlyph::old_gid\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4495. },
  4496. "locations": [
  4497. {
  4498. "physicalLocation": {
  4499. "artifactLocation": {
  4500. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/glyf/SubsetGlyph.hh"
  4501. },
  4502. "region": {
  4503. "startLine": 86,
  4504. "startColumn": 1,
  4505. "endLine": 86,
  4506. "endColumn": 1
  4507. }
  4508. },
  4509. "logicalLocations": [
  4510. {
  4511. "decoratedName": "??0SubsetGlyph@glyf_impl@OT@@QEAA@XZ",
  4512. "kind": "function"
  4513. }
  4514. ]
  4515. }
  4516. ],
  4517. "properties": {
  4518. "targetSymbol": "OT::glyf_impl::SubsetGlyph::old_gid"
  4519. }
  4520. },
  4521. {
  4522. "ruleId": "C26495",
  4523. "message": {
  4524. "text": "Die Variable \"OT::index_map_subset_plan_t::map_count\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4525. },
  4526. "locations": [
  4527. {
  4528. "physicalLocation": {
  4529. "artifactLocation": {
  4530. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-hvar-table.hh"
  4531. },
  4532. "region": {
  4533. "startLine": 159,
  4534. "startColumn": 1,
  4535. "endLine": 159,
  4536. "endColumn": 1
  4537. }
  4538. },
  4539. "logicalLocations": [
  4540. {
  4541. "decoratedName": "??0index_map_subset_plan_t@OT@@QEAA@XZ",
  4542. "kind": "function"
  4543. }
  4544. ]
  4545. }
  4546. ],
  4547. "properties": {
  4548. "targetSymbol": "OT::index_map_subset_plan_t::map_count"
  4549. }
  4550. },
  4551. {
  4552. "ruleId": "C26495",
  4553. "message": {
  4554. "text": "Die Variable \"OT::index_map_subset_plan_t::inner_bit_count\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4555. },
  4556. "locations": [
  4557. {
  4558. "physicalLocation": {
  4559. "artifactLocation": {
  4560. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-hvar-table.hh"
  4561. },
  4562. "region": {
  4563. "startLine": 159,
  4564. "startColumn": 1,
  4565. "endLine": 159,
  4566. "endColumn": 1
  4567. }
  4568. },
  4569. "logicalLocations": [
  4570. {
  4571. "decoratedName": "??0index_map_subset_plan_t@OT@@QEAA@XZ",
  4572. "kind": "function"
  4573. }
  4574. ]
  4575. }
  4576. ],
  4577. "properties": {
  4578. "targetSymbol": "OT::index_map_subset_plan_t::inner_bit_count"
  4579. }
  4580. },
  4581. {
  4582. "ruleId": "C26495",
  4583. "message": {
  4584. "text": "Die Variable \"OT::index_map_subset_plan_t::outer_bit_count\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4585. },
  4586. "locations": [
  4587. {
  4588. "physicalLocation": {
  4589. "artifactLocation": {
  4590. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-hvar-table.hh"
  4591. },
  4592. "region": {
  4593. "startLine": 159,
  4594. "startColumn": 1,
  4595. "endLine": 159,
  4596. "endColumn": 1
  4597. }
  4598. },
  4599. "logicalLocations": [
  4600. {
  4601. "decoratedName": "??0index_map_subset_plan_t@OT@@QEAA@XZ",
  4602. "kind": "function"
  4603. }
  4604. ]
  4605. }
  4606. ],
  4607. "properties": {
  4608. "targetSymbol": "OT::index_map_subset_plan_t::outer_bit_count"
  4609. }
  4610. },
  4611. {
  4612. "ruleId": "C26439",
  4613. "message": {
  4614. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  4615. },
  4616. "locations": [
  4617. {
  4618. "physicalLocation": {
  4619. "artifactLocation": {
  4620. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  4621. },
  4622. "region": {
  4623. "startLine": 447,
  4624. "startColumn": 13,
  4625. "endLine": 447,
  4626. "endColumn": 13
  4627. }
  4628. },
  4629. "logicalLocations": [
  4630. {
  4631. "decoratedName": "??4hb_map_t@@QEAAAEAU0@$$QEAU0@@Z",
  4632. "kind": "function"
  4633. }
  4634. ]
  4635. }
  4636. ]
  4637. },
  4638. {
  4639. "ruleId": "C26439",
  4640. "message": {
  4641. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  4642. },
  4643. "locations": [
  4644. {
  4645. "physicalLocation": {
  4646. "artifactLocation": {
  4647. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-vector.hh"
  4648. },
  4649. "region": {
  4650. "startLine": 126,
  4651. "startColumn": 16,
  4652. "endLine": 126,
  4653. "endColumn": 16
  4654. }
  4655. },
  4656. "logicalLocations": [
  4657. {
  4658. "decoratedName": "??4?$hb_vector_t@I$0A@@@QEAAAEAU0@$$QEAU0@@Z",
  4659. "kind": "function"
  4660. }
  4661. ]
  4662. }
  4663. ]
  4664. },
  4665. {
  4666. "ruleId": "C26439",
  4667. "message": {
  4668. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  4669. },
  4670. "locations": [
  4671. {
  4672. "physicalLocation": {
  4673. "artifactLocation": {
  4674. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  4675. },
  4676. "region": {
  4677. "startLine": 49,
  4678. "startColumn": 17,
  4679. "endLine": 49,
  4680. "endColumn": 17
  4681. }
  4682. },
  4683. "logicalLocations": [
  4684. {
  4685. "decoratedName": "??4?$hb_hashmap_t@II$00@@QEAAAEAU0@$$QEAU0@@Z",
  4686. "kind": "function"
  4687. }
  4688. ]
  4689. }
  4690. ]
  4691. },
  4692. {
  4693. "ruleId": "C6319",
  4694. "message": {
  4695. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4696. },
  4697. "locations": [
  4698. {
  4699. "physicalLocation": {
  4700. "artifactLocation": {
  4701. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4702. },
  4703. "region": {
  4704. "startLine": 213,
  4705. "startColumn": 9,
  4706. "endLine": 213,
  4707. "endColumn": 13
  4708. }
  4709. },
  4710. "logicalLocations": [
  4711. {
  4712. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBUIndex@OT@@@@AEBUIndex@OT@@@@QEBA?AU?$hb_array_t@$$CBUIndex@OT@@@@XZ",
  4713. "kind": "function"
  4714. }
  4715. ]
  4716. }
  4717. ]
  4718. },
  4719. {
  4720. "ruleId": "C6319",
  4721. "message": {
  4722. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4723. },
  4724. "locations": [
  4725. {
  4726. "physicalLocation": {
  4727. "artifactLocation": {
  4728. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4729. },
  4730. "region": {
  4731. "startLine": 213,
  4732. "startColumn": 9,
  4733. "endLine": 213,
  4734. "endColumn": 13
  4735. }
  4736. },
  4737. "logicalLocations": [
  4738. {
  4739. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@Uitem_t@?$hb_hashmap_t@IM$0A@@@@@AEAUitem_t@?$hb_hashmap_t@IM$0A@@@@@QEBA?AU?$hb_array_t@Uitem_t@?$hb_hashmap_t@IM$0A@@@@@XZ",
  4740. "kind": "function"
  4741. }
  4742. ]
  4743. }
  4744. ]
  4745. },
  4746. {
  4747. "ruleId": "C26439",
  4748. "message": {
  4749. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  4750. },
  4751. "locations": [
  4752. {
  4753. "physicalLocation": {
  4754. "artifactLocation": {
  4755. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  4756. },
  4757. "region": {
  4758. "startLine": 103,
  4759. "startColumn": 15,
  4760. "endLine": 103,
  4761. "endColumn": 15
  4762. }
  4763. },
  4764. "logicalLocations": [
  4765. {
  4766. "decoratedName": "??4?$unique_ptr@Uhb_set_t@@@hb@@QEAAAEAU01@$$QEAU01@@Z",
  4767. "kind": "function"
  4768. }
  4769. ]
  4770. }
  4771. ]
  4772. },
  4773. {
  4774. "ruleId": "C6319",
  4775. "message": {
  4776. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4777. },
  4778. "locations": [
  4779. {
  4780. "physicalLocation": {
  4781. "artifactLocation": {
  4782. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4783. },
  4784. "region": {
  4785. "startLine": 213,
  4786. "startColumn": 9,
  4787. "endLine": 213,
  4788. "endColumn": 13
  4789. }
  4790. },
  4791. "logicalLocations": [
  4792. {
  4793. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$hb_pair_t@II@@@@AEBU?$hb_pair_t@II@@@@QEBA?AU?$hb_array_t@$$CBU?$hb_pair_t@II@@@@XZ",
  4794. "kind": "function"
  4795. }
  4796. ]
  4797. }
  4798. ]
  4799. },
  4800. {
  4801. "ruleId": "C6001",
  4802. "message": {
  4803. "text": "Nicht initialisierter Speicher \"range_rec\" wird verwendet."
  4804. },
  4805. "locations": [
  4806. {
  4807. "physicalLocation": {
  4808. "artifactLocation": {
  4809. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4810. },
  4811. "region": {
  4812. "startLine": 1774,
  4813. "startColumn": 5,
  4814. "endLine": 1774,
  4815. "endColumn": 5
  4816. }
  4817. },
  4818. "logicalLocations": [
  4819. {
  4820. "decoratedName": "??$serialize@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@AEBU<unnamed-type-hb_second>@@AEBU<unnamed-type-hb_identity>@@$0A@@@$0A@@?$ClassDefFormat2_4@USmallTypes@Layout@OT@@@OT@@AEAA_NPEAUhb_serialize_context_t@@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@AEBU<unnamed-type-hb_second>@@AEBU<unnamed-type-hb_identity>@@$0A@@@@Z",
  4821. "kind": "function"
  4822. }
  4823. ]
  4824. }
  4825. ],
  4826. "codeFlows": [
  4827. {
  4828. "threadFlows": [
  4829. {
  4830. "locations": [
  4831. {
  4832. "location": {
  4833. "physicalLocation": {
  4834. "artifactLocation": {
  4835. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4836. },
  4837. "region": {
  4838. "startLine": 1759,
  4839. "startColumn": 5
  4840. }
  4841. }
  4842. },
  4843. "importance": "unimportant"
  4844. },
  4845. {
  4846. "location": {
  4847. "physicalLocation": {
  4848. "artifactLocation": {
  4849. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4850. },
  4851. "region": {
  4852. "startLine": 1760,
  4853. "startColumn": 9
  4854. }
  4855. }
  4856. },
  4857. "importance": "unimportant"
  4858. },
  4859. {
  4860. "location": {
  4861. "physicalLocation": {
  4862. "artifactLocation": {
  4863. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4864. },
  4865. "region": {
  4866. "startLine": 1762,
  4867. "startColumn": 9
  4868. }
  4869. }
  4870. },
  4871. "importance": "unimportant"
  4872. },
  4873. {
  4874. "location": {
  4875. "physicalLocation": {
  4876. "artifactLocation": {
  4877. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4878. },
  4879. "region": {
  4880. "startLine": 1769,
  4881. "startColumn": 14
  4882. }
  4883. }
  4884. },
  4885. "importance": "unimportant"
  4886. },
  4887. {
  4888. "location": {
  4889. "physicalLocation": {
  4890. "artifactLocation": {
  4891. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4892. },
  4893. "region": {
  4894. "startLine": 1770,
  4895. "startColumn": 20
  4896. }
  4897. }
  4898. },
  4899. "importance": "unimportant"
  4900. },
  4901. {
  4902. "location": {
  4903. "physicalLocation": {
  4904. "artifactLocation": {
  4905. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4906. },
  4907. "region": {
  4908. "startLine": 1771,
  4909. "startColumn": 14
  4910. }
  4911. }
  4912. },
  4913. "importance": "unimportant"
  4914. },
  4915. {
  4916. "location": {
  4917. "physicalLocation": {
  4918. "artifactLocation": {
  4919. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4920. },
  4921. "region": {
  4922. "startLine": 1773,
  4923. "startColumn": 24
  4924. }
  4925. },
  4926. "message": {
  4927. "text": "\"range_rec\" ist nicht initialisiert"
  4928. }
  4929. },
  4930. "kinds": [
  4931. "declaration"
  4932. ],
  4933. "importance": "essential"
  4934. },
  4935. {
  4936. "location": {
  4937. "physicalLocation": {
  4938. "artifactLocation": {
  4939. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4940. },
  4941. "region": {
  4942. "startLine": 1774,
  4943. "startColumn": 21
  4944. }
  4945. },
  4946. "message": {
  4947. "text": "\"range_rec\" ist eine Ausgabe von \"OT::HBGlyphID16::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:197 deklariert)"
  4948. }
  4949. },
  4950. "kinds": [
  4951. "declaration"
  4952. ],
  4953. "importance": "important"
  4954. },
  4955. {
  4956. "location": {
  4957. "physicalLocation": {
  4958. "artifactLocation": {
  4959. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4960. },
  4961. "region": {
  4962. "startLine": 1775,
  4963. "startColumn": 20
  4964. }
  4965. }
  4966. },
  4967. "importance": "unimportant"
  4968. },
  4969. {
  4970. "location": {
  4971. "physicalLocation": {
  4972. "artifactLocation": {
  4973. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4974. },
  4975. "region": {
  4976. "startLine": 1776,
  4977. "startColumn": 21
  4978. }
  4979. }
  4980. },
  4981. "importance": "unimportant"
  4982. },
  4983. {
  4984. "location": {
  4985. "physicalLocation": {
  4986. "artifactLocation": {
  4987. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  4988. },
  4989. "region": {
  4990. "startLine": 1778,
  4991. "startColumn": 11
  4992. }
  4993. }
  4994. },
  4995. "importance": "unimportant"
  4996. },
  4997. {
  4998. "location": {
  4999. "physicalLocation": {
  5000. "artifactLocation": {
  5001. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  5002. },
  5003. "region": {
  5004. "startLine": 1774,
  5005. "startColumn": 5
  5006. }
  5007. },
  5008. "message": {
  5009. "text": "\"range_rec\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  5010. }
  5011. },
  5012. "kinds": [
  5013. "usage"
  5014. ],
  5015. "importance": "essential"
  5016. }
  5017. ]
  5018. }
  5019. ]
  5020. }
  5021. ]
  5022. },
  5023. {
  5024. "ruleId": "C26439",
  5025. "message": {
  5026. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  5027. },
  5028. "locations": [
  5029. {
  5030. "physicalLocation": {
  5031. "artifactLocation": {
  5032. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  5033. },
  5034. "region": {
  5035. "startLine": 61,
  5036. "startColumn": 15,
  5037. "endLine": 61,
  5038. "endColumn": 15
  5039. }
  5040. },
  5041. "logicalLocations": [
  5042. {
  5043. "decoratedName": "??4?$shared_ptr@Uhb_map_t@@@hb@@QEAAAEAU01@$$QEAU01@@Z",
  5044. "kind": "function"
  5045. }
  5046. ]
  5047. }
  5048. ]
  5049. },
  5050. {
  5051. "ruleId": "C26439",
  5052. "message": {
  5053. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  5054. },
  5055. "locations": [
  5056. {
  5057. "physicalLocation": {
  5058. "artifactLocation": {
  5059. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  5060. },
  5061. "region": {
  5062. "startLine": 61,
  5063. "startColumn": 15,
  5064. "endLine": 61,
  5065. "endColumn": 15
  5066. }
  5067. },
  5068. "logicalLocations": [
  5069. {
  5070. "decoratedName": "??4?$shared_ptr@Uhb_set_t@@@hb@@QEAAAEAU01@$$QEAU01@@Z",
  5071. "kind": "function"
  5072. }
  5073. ]
  5074. }
  5075. ]
  5076. },
  5077. {
  5078. "ruleId": "C6001",
  5079. "message": {
  5080. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  5081. },
  5082. "locations": [
  5083. {
  5084. "physicalLocation": {
  5085. "artifactLocation": {
  5086. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5087. },
  5088. "region": {
  5089. "startLine": 52,
  5090. "startColumn": 12,
  5091. "endLine": 52,
  5092. "endColumn": 12
  5093. }
  5094. },
  5095. "logicalLocations": [
  5096. {
  5097. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_neg>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_neg>@@@Z",
  5098. "kind": "function"
  5099. }
  5100. ]
  5101. }
  5102. ],
  5103. "codeFlows": [
  5104. {
  5105. "threadFlows": [
  5106. {
  5107. "locations": [
  5108. {
  5109. "location": {
  5110. "physicalLocation": {
  5111. "artifactLocation": {
  5112. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5113. },
  5114. "region": {
  5115. "startLine": 49,
  5116. "startColumn": 22
  5117. }
  5118. },
  5119. "message": {
  5120. "text": "\"r\" ist nicht initialisiert"
  5121. }
  5122. },
  5123. "kinds": [
  5124. "declaration"
  5125. ],
  5126. "importance": "essential"
  5127. },
  5128. {
  5129. "location": {
  5130. "physicalLocation": {
  5131. "artifactLocation": {
  5132. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5133. },
  5134. "region": {
  5135. "startLine": 50,
  5136. "startColumn": 23
  5137. }
  5138. }
  5139. },
  5140. "importance": "unimportant"
  5141. },
  5142. {
  5143. "location": {
  5144. "physicalLocation": {
  5145. "artifactLocation": {
  5146. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5147. },
  5148. "region": {
  5149. "startLine": 50,
  5150. "startColumn": 32
  5151. }
  5152. },
  5153. "message": {
  5154. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  5155. }
  5156. },
  5157. "kinds": [
  5158. "branch"
  5159. ],
  5160. "importance": "important"
  5161. },
  5162. {
  5163. "location": {
  5164. "physicalLocation": {
  5165. "artifactLocation": {
  5166. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5167. },
  5168. "region": {
  5169. "startLine": 52,
  5170. "startColumn": 5
  5171. }
  5172. }
  5173. },
  5174. "importance": "unimportant"
  5175. },
  5176. {
  5177. "location": {
  5178. "physicalLocation": {
  5179. "artifactLocation": {
  5180. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5181. },
  5182. "region": {
  5183. "startLine": 52,
  5184. "startColumn": 12
  5185. }
  5186. },
  5187. "message": {
  5188. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  5189. }
  5190. },
  5191. "kinds": [
  5192. "usage"
  5193. ],
  5194. "importance": "essential"
  5195. }
  5196. ]
  5197. }
  5198. ]
  5199. }
  5200. ]
  5201. },
  5202. {
  5203. "ruleId": "C6001",
  5204. "message": {
  5205. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  5206. },
  5207. "locations": [
  5208. {
  5209. "physicalLocation": {
  5210. "artifactLocation": {
  5211. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5212. },
  5213. "region": {
  5214. "startLine": 60,
  5215. "startColumn": 12,
  5216. "endLine": 60,
  5217. "endColumn": 12
  5218. }
  5219. },
  5220. "logicalLocations": [
  5221. {
  5222. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_xor>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_xor>@@AEBU0@@Z",
  5223. "kind": "function"
  5224. }
  5225. ]
  5226. }
  5227. ],
  5228. "codeFlows": [
  5229. {
  5230. "threadFlows": [
  5231. {
  5232. "locations": [
  5233. {
  5234. "location": {
  5235. "physicalLocation": {
  5236. "artifactLocation": {
  5237. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5238. },
  5239. "region": {
  5240. "startLine": 57,
  5241. "startColumn": 22
  5242. }
  5243. },
  5244. "message": {
  5245. "text": "\"r\" ist nicht initialisiert"
  5246. }
  5247. },
  5248. "kinds": [
  5249. "declaration"
  5250. ],
  5251. "importance": "essential"
  5252. },
  5253. {
  5254. "location": {
  5255. "physicalLocation": {
  5256. "artifactLocation": {
  5257. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5258. },
  5259. "region": {
  5260. "startLine": 58,
  5261. "startColumn": 23
  5262. }
  5263. }
  5264. },
  5265. "importance": "unimportant"
  5266. },
  5267. {
  5268. "location": {
  5269. "physicalLocation": {
  5270. "artifactLocation": {
  5271. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5272. },
  5273. "region": {
  5274. "startLine": 58,
  5275. "startColumn": 32
  5276. }
  5277. },
  5278. "message": {
  5279. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  5280. }
  5281. },
  5282. "kinds": [
  5283. "branch"
  5284. ],
  5285. "importance": "important"
  5286. },
  5287. {
  5288. "location": {
  5289. "physicalLocation": {
  5290. "artifactLocation": {
  5291. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5292. },
  5293. "region": {
  5294. "startLine": 60,
  5295. "startColumn": 5
  5296. }
  5297. }
  5298. },
  5299. "importance": "unimportant"
  5300. },
  5301. {
  5302. "location": {
  5303. "physicalLocation": {
  5304. "artifactLocation": {
  5305. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5306. },
  5307. "region": {
  5308. "startLine": 60,
  5309. "startColumn": 12
  5310. }
  5311. },
  5312. "message": {
  5313. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  5314. }
  5315. },
  5316. "kinds": [
  5317. "usage"
  5318. ],
  5319. "importance": "essential"
  5320. }
  5321. ]
  5322. }
  5323. ]
  5324. }
  5325. ]
  5326. },
  5327. {
  5328. "ruleId": "C6001",
  5329. "message": {
  5330. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  5331. },
  5332. "locations": [
  5333. {
  5334. "physicalLocation": {
  5335. "artifactLocation": {
  5336. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5337. },
  5338. "region": {
  5339. "startLine": 60,
  5340. "startColumn": 12,
  5341. "endLine": 60,
  5342. "endColumn": 12
  5343. }
  5344. },
  5345. "logicalLocations": [
  5346. {
  5347. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_and>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_and>@@AEBU0@@Z",
  5348. "kind": "function"
  5349. }
  5350. ]
  5351. }
  5352. ],
  5353. "codeFlows": [
  5354. {
  5355. "threadFlows": [
  5356. {
  5357. "locations": [
  5358. {
  5359. "location": {
  5360. "physicalLocation": {
  5361. "artifactLocation": {
  5362. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5363. },
  5364. "region": {
  5365. "startLine": 57,
  5366. "startColumn": 22
  5367. }
  5368. },
  5369. "message": {
  5370. "text": "\"r\" ist nicht initialisiert"
  5371. }
  5372. },
  5373. "kinds": [
  5374. "declaration"
  5375. ],
  5376. "importance": "essential"
  5377. },
  5378. {
  5379. "location": {
  5380. "physicalLocation": {
  5381. "artifactLocation": {
  5382. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5383. },
  5384. "region": {
  5385. "startLine": 58,
  5386. "startColumn": 23
  5387. }
  5388. }
  5389. },
  5390. "importance": "unimportant"
  5391. },
  5392. {
  5393. "location": {
  5394. "physicalLocation": {
  5395. "artifactLocation": {
  5396. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5397. },
  5398. "region": {
  5399. "startLine": 58,
  5400. "startColumn": 32
  5401. }
  5402. },
  5403. "message": {
  5404. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  5405. }
  5406. },
  5407. "kinds": [
  5408. "branch"
  5409. ],
  5410. "importance": "important"
  5411. },
  5412. {
  5413. "location": {
  5414. "physicalLocation": {
  5415. "artifactLocation": {
  5416. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5417. },
  5418. "region": {
  5419. "startLine": 60,
  5420. "startColumn": 5
  5421. }
  5422. }
  5423. },
  5424. "importance": "unimportant"
  5425. },
  5426. {
  5427. "location": {
  5428. "physicalLocation": {
  5429. "artifactLocation": {
  5430. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5431. },
  5432. "region": {
  5433. "startLine": 60,
  5434. "startColumn": 12
  5435. }
  5436. },
  5437. "message": {
  5438. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  5439. }
  5440. },
  5441. "kinds": [
  5442. "usage"
  5443. ],
  5444. "importance": "essential"
  5445. }
  5446. ]
  5447. }
  5448. ]
  5449. }
  5450. ]
  5451. },
  5452. {
  5453. "ruleId": "C6001",
  5454. "message": {
  5455. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  5456. },
  5457. "locations": [
  5458. {
  5459. "physicalLocation": {
  5460. "artifactLocation": {
  5461. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5462. },
  5463. "region": {
  5464. "startLine": 60,
  5465. "startColumn": 12,
  5466. "endLine": 60,
  5467. "endColumn": 12
  5468. }
  5469. },
  5470. "logicalLocations": [
  5471. {
  5472. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_or>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_or>@@AEBU0@@Z",
  5473. "kind": "function"
  5474. }
  5475. ]
  5476. }
  5477. ],
  5478. "codeFlows": [
  5479. {
  5480. "threadFlows": [
  5481. {
  5482. "locations": [
  5483. {
  5484. "location": {
  5485. "physicalLocation": {
  5486. "artifactLocation": {
  5487. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5488. },
  5489. "region": {
  5490. "startLine": 57,
  5491. "startColumn": 22
  5492. }
  5493. },
  5494. "message": {
  5495. "text": "\"r\" ist nicht initialisiert"
  5496. }
  5497. },
  5498. "kinds": [
  5499. "declaration"
  5500. ],
  5501. "importance": "essential"
  5502. },
  5503. {
  5504. "location": {
  5505. "physicalLocation": {
  5506. "artifactLocation": {
  5507. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5508. },
  5509. "region": {
  5510. "startLine": 58,
  5511. "startColumn": 23
  5512. }
  5513. }
  5514. },
  5515. "importance": "unimportant"
  5516. },
  5517. {
  5518. "location": {
  5519. "physicalLocation": {
  5520. "artifactLocation": {
  5521. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5522. },
  5523. "region": {
  5524. "startLine": 58,
  5525. "startColumn": 32
  5526. }
  5527. },
  5528. "message": {
  5529. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  5530. }
  5531. },
  5532. "kinds": [
  5533. "branch"
  5534. ],
  5535. "importance": "important"
  5536. },
  5537. {
  5538. "location": {
  5539. "physicalLocation": {
  5540. "artifactLocation": {
  5541. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5542. },
  5543. "region": {
  5544. "startLine": 60,
  5545. "startColumn": 5
  5546. }
  5547. }
  5548. },
  5549. "importance": "unimportant"
  5550. },
  5551. {
  5552. "location": {
  5553. "physicalLocation": {
  5554. "artifactLocation": {
  5555. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  5556. },
  5557. "region": {
  5558. "startLine": 60,
  5559. "startColumn": 12
  5560. }
  5561. },
  5562. "message": {
  5563. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  5564. }
  5565. },
  5566. "kinds": [
  5567. "usage"
  5568. ],
  5569. "importance": "essential"
  5570. }
  5571. ]
  5572. }
  5573. ]
  5574. }
  5575. ]
  5576. },
  5577. {
  5578. "ruleId": "C6001",
  5579. "message": {
  5580. "text": "Nicht initialisierter Speicher \"record\" wird verwendet."
  5581. },
  5582. "locations": [
  5583. {
  5584. "physicalLocation": {
  5585. "artifactLocation": {
  5586. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5587. },
  5588. "region": {
  5589. "startLine": 839,
  5590. "startColumn": 5,
  5591. "endLine": 839,
  5592. "endColumn": 5
  5593. }
  5594. },
  5595. "logicalLocations": [
  5596. {
  5597. "decoratedName": "??$serialize@U?$hb_filter_iter_t@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@V<lambda_53f37dd2cf59066c87178e8e44b188d7>@@AEBU<unnamed-type-hb_identity>@@$0A@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_first>@@$0A@@@$0A@@CmapSubtableFormat12@OT@@QEAAXPEAUhb_serialize_context_t@@U?$hb_filter_iter_t@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@V<lambda_53f37dd2cf59066c87178e8e44b188d7>@@AEBU<unnamed-type-hb_identity>@@$0A@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_first>@@$0A@@@@Z",
  5598. "kind": "function"
  5599. }
  5600. ]
  5601. }
  5602. ],
  5603. "codeFlows": [
  5604. {
  5605. "threadFlows": [
  5606. {
  5607. "locations": [
  5608. {
  5609. "location": {
  5610. "physicalLocation": {
  5611. "artifactLocation": {
  5612. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5613. },
  5614. "region": {
  5615. "startLine": 807,
  5616. "startColumn": 10
  5617. }
  5618. }
  5619. },
  5620. "importance": "unimportant"
  5621. },
  5622. {
  5623. "location": {
  5624. "physicalLocation": {
  5625. "artifactLocation": {
  5626. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5627. },
  5628. "region": {
  5629. "startLine": 808,
  5630. "startColumn": 14
  5631. }
  5632. }
  5633. },
  5634. "importance": "unimportant"
  5635. },
  5636. {
  5637. "location": {
  5638. "physicalLocation": {
  5639. "artifactLocation": {
  5640. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5641. },
  5642. "region": {
  5643. "startLine": 809,
  5644. "startColumn": 9
  5645. }
  5646. }
  5647. },
  5648. "importance": "unimportant"
  5649. },
  5650. {
  5651. "location": {
  5652. "physicalLocation": {
  5653. "artifactLocation": {
  5654. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5655. },
  5656. "region": {
  5657. "startLine": 811,
  5658. "startColumn": 20
  5659. }
  5660. }
  5661. },
  5662. "importance": "unimportant"
  5663. },
  5664. {
  5665. "location": {
  5666. "physicalLocation": {
  5667. "artifactLocation": {
  5668. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5669. },
  5670. "region": {
  5671. "startLine": 811,
  5672. "startColumn": 57
  5673. }
  5674. }
  5675. },
  5676. "importance": "unimportant"
  5677. },
  5678. {
  5679. "location": {
  5680. "physicalLocation": {
  5681. "artifactLocation": {
  5682. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5683. },
  5684. "region": {
  5685. "startLine": 812,
  5686. "startColumn": 20
  5687. }
  5688. }
  5689. },
  5690. "importance": "unimportant"
  5691. },
  5692. {
  5693. "location": {
  5694. "physicalLocation": {
  5695. "artifactLocation": {
  5696. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5697. },
  5698. "region": {
  5699. "startLine": 814,
  5700. "startColumn": 26
  5701. }
  5702. }
  5703. },
  5704. "importance": "unimportant"
  5705. },
  5706. {
  5707. "location": {
  5708. "physicalLocation": {
  5709. "artifactLocation": {
  5710. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5711. },
  5712. "region": {
  5713. "startLine": 838,
  5714. "startColumn": 27
  5715. }
  5716. },
  5717. "message": {
  5718. "text": "\"record\" ist nicht initialisiert"
  5719. }
  5720. },
  5721. "kinds": [
  5722. "declaration"
  5723. ],
  5724. "importance": "essential"
  5725. },
  5726. {
  5727. "location": {
  5728. "physicalLocation": {
  5729. "artifactLocation": {
  5730. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5731. },
  5732. "region": {
  5733. "startLine": 839,
  5734. "startColumn": 26
  5735. }
  5736. },
  5737. "message": {
  5738. "text": "\"record\" ist eine Ausgabe von \"OT::IntType<unsigned int,4>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  5739. }
  5740. },
  5741. "kinds": [
  5742. "declaration"
  5743. ],
  5744. "importance": "important"
  5745. },
  5746. {
  5747. "location": {
  5748. "physicalLocation": {
  5749. "artifactLocation": {
  5750. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5751. },
  5752. "region": {
  5753. "startLine": 840,
  5754. "startColumn": 24
  5755. }
  5756. }
  5757. },
  5758. "importance": "unimportant"
  5759. },
  5760. {
  5761. "location": {
  5762. "physicalLocation": {
  5763. "artifactLocation": {
  5764. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5765. },
  5766. "region": {
  5767. "startLine": 841,
  5768. "startColumn": 20
  5769. }
  5770. }
  5771. },
  5772. "importance": "unimportant"
  5773. },
  5774. {
  5775. "location": {
  5776. "physicalLocation": {
  5777. "artifactLocation": {
  5778. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5779. },
  5780. "region": {
  5781. "startLine": 842,
  5782. "startColumn": 36
  5783. }
  5784. }
  5785. },
  5786. "importance": "unimportant"
  5787. },
  5788. {
  5789. "location": {
  5790. "physicalLocation": {
  5791. "artifactLocation": {
  5792. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5793. },
  5794. "region": {
  5795. "startLine": 844,
  5796. "startColumn": 18
  5797. }
  5798. }
  5799. },
  5800. "importance": "unimportant"
  5801. },
  5802. {
  5803. "location": {
  5804. "physicalLocation": {
  5805. "artifactLocation": {
  5806. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5807. },
  5808. "region": {
  5809. "startLine": 845,
  5810. "startColumn": 20
  5811. }
  5812. }
  5813. },
  5814. "importance": "unimportant"
  5815. },
  5816. {
  5817. "location": {
  5818. "physicalLocation": {
  5819. "artifactLocation": {
  5820. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5821. },
  5822. "region": {
  5823. "startLine": 846,
  5824. "startColumn": 18
  5825. }
  5826. }
  5827. },
  5828. "importance": "unimportant"
  5829. },
  5830. {
  5831. "location": {
  5832. "physicalLocation": {
  5833. "artifactLocation": {
  5834. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5835. },
  5836. "region": {
  5837. "startLine": 847,
  5838. "startColumn": 22
  5839. }
  5840. }
  5841. },
  5842. "importance": "unimportant"
  5843. },
  5844. {
  5845. "location": {
  5846. "physicalLocation": {
  5847. "artifactLocation": {
  5848. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5849. },
  5850. "region": {
  5851. "startLine": 848,
  5852. "startColumn": 3
  5853. }
  5854. }
  5855. },
  5856. "importance": "unimportant"
  5857. },
  5858. {
  5859. "location": {
  5860. "physicalLocation": {
  5861. "artifactLocation": {
  5862. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5863. },
  5864. "region": {
  5865. "startLine": 839,
  5866. "startColumn": 5
  5867. }
  5868. },
  5869. "message": {
  5870. "text": "\"record\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  5871. }
  5872. },
  5873. "kinds": [
  5874. "usage"
  5875. ],
  5876. "importance": "essential"
  5877. }
  5878. ]
  5879. }
  5880. ]
  5881. }
  5882. ]
  5883. },
  5884. {
  5885. "ruleId": "C6001",
  5886. "message": {
  5887. "text": "Nicht initialisierter Speicher \"grouprecord\" wird verwendet."
  5888. },
  5889. "locations": [
  5890. {
  5891. "physicalLocation": {
  5892. "artifactLocation": {
  5893. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5894. },
  5895. "region": {
  5896. "startLine": 825,
  5897. "startColumn": 2,
  5898. "endLine": 825,
  5899. "endColumn": 2
  5900. }
  5901. },
  5902. "logicalLocations": [
  5903. {
  5904. "decoratedName": "??$serialize@U?$hb_filter_iter_t@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@V<lambda_53f37dd2cf59066c87178e8e44b188d7>@@AEBU<unnamed-type-hb_identity>@@$0A@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_first>@@$0A@@@$0A@@CmapSubtableFormat12@OT@@QEAAXPEAUhb_serialize_context_t@@U?$hb_filter_iter_t@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@V<lambda_53f37dd2cf59066c87178e8e44b188d7>@@AEBU<unnamed-type-hb_identity>@@$0A@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_first>@@$0A@@@@Z",
  5905. "kind": "function"
  5906. }
  5907. ]
  5908. }
  5909. ],
  5910. "codeFlows": [
  5911. {
  5912. "threadFlows": [
  5913. {
  5914. "locations": [
  5915. {
  5916. "location": {
  5917. "physicalLocation": {
  5918. "artifactLocation": {
  5919. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5920. },
  5921. "region": {
  5922. "startLine": 807,
  5923. "startColumn": 10
  5924. }
  5925. }
  5926. },
  5927. "importance": "unimportant"
  5928. },
  5929. {
  5930. "location": {
  5931. "physicalLocation": {
  5932. "artifactLocation": {
  5933. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5934. },
  5935. "region": {
  5936. "startLine": 808,
  5937. "startColumn": 14
  5938. }
  5939. }
  5940. },
  5941. "importance": "unimportant"
  5942. },
  5943. {
  5944. "location": {
  5945. "physicalLocation": {
  5946. "artifactLocation": {
  5947. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5948. },
  5949. "region": {
  5950. "startLine": 809,
  5951. "startColumn": 9
  5952. }
  5953. }
  5954. },
  5955. "importance": "unimportant"
  5956. },
  5957. {
  5958. "location": {
  5959. "physicalLocation": {
  5960. "artifactLocation": {
  5961. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5962. },
  5963. "region": {
  5964. "startLine": 811,
  5965. "startColumn": 20
  5966. }
  5967. }
  5968. },
  5969. "importance": "unimportant"
  5970. },
  5971. {
  5972. "location": {
  5973. "physicalLocation": {
  5974. "artifactLocation": {
  5975. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5976. },
  5977. "region": {
  5978. "startLine": 811,
  5979. "startColumn": 57
  5980. }
  5981. }
  5982. },
  5983. "importance": "unimportant"
  5984. },
  5985. {
  5986. "location": {
  5987. "physicalLocation": {
  5988. "artifactLocation": {
  5989. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  5990. },
  5991. "region": {
  5992. "startLine": 812,
  5993. "startColumn": 20
  5994. }
  5995. }
  5996. },
  5997. "importance": "unimportant"
  5998. },
  5999. {
  6000. "location": {
  6001. "physicalLocation": {
  6002. "artifactLocation": {
  6003. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6004. },
  6005. "region": {
  6006. "startLine": 814,
  6007. "startColumn": 26
  6008. }
  6009. }
  6010. },
  6011. "importance": "unimportant"
  6012. },
  6013. {
  6014. "location": {
  6015. "physicalLocation": {
  6016. "artifactLocation": {
  6017. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6018. },
  6019. "region": {
  6020. "startLine": 814,
  6021. "startColumn": 22
  6022. }
  6023. }
  6024. },
  6025. "importance": "unimportant"
  6026. },
  6027. {
  6028. "location": {
  6029. "physicalLocation": {
  6030. "artifactLocation": {
  6031. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6032. },
  6033. "region": {
  6034. "startLine": 816,
  6035. "startColumn": 25
  6036. }
  6037. }
  6038. },
  6039. "importance": "unimportant"
  6040. },
  6041. {
  6042. "location": {
  6043. "physicalLocation": {
  6044. "artifactLocation": {
  6045. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6046. },
  6047. "region": {
  6048. "startLine": 818,
  6049. "startColumn": 16
  6050. }
  6051. }
  6052. },
  6053. "importance": "unimportant"
  6054. },
  6055. {
  6056. "location": {
  6057. "physicalLocation": {
  6058. "artifactLocation": {
  6059. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6060. },
  6061. "region": {
  6062. "startLine": 819,
  6063. "startColumn": 14
  6064. }
  6065. }
  6066. },
  6067. "importance": "unimportant"
  6068. },
  6069. {
  6070. "location": {
  6071. "physicalLocation": {
  6072. "artifactLocation": {
  6073. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6074. },
  6075. "region": {
  6076. "startLine": 820,
  6077. "startColumn": 10
  6078. }
  6079. }
  6080. },
  6081. "importance": "unimportant"
  6082. },
  6083. {
  6084. "location": {
  6085. "physicalLocation": {
  6086. "artifactLocation": {
  6087. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6088. },
  6089. "region": {
  6090. "startLine": 814,
  6091. "startColumn": 26
  6092. }
  6093. }
  6094. },
  6095. "importance": "unimportant"
  6096. },
  6097. {
  6098. "location": {
  6099. "physicalLocation": {
  6100. "artifactLocation": {
  6101. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6102. },
  6103. "region": {
  6104. "startLine": 814,
  6105. "startColumn": 22
  6106. }
  6107. }
  6108. },
  6109. "importance": "unimportant"
  6110. },
  6111. {
  6112. "location": {
  6113. "physicalLocation": {
  6114. "artifactLocation": {
  6115. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6116. },
  6117. "region": {
  6118. "startLine": 816,
  6119. "startColumn": 25
  6120. }
  6121. }
  6122. },
  6123. "importance": "unimportant"
  6124. },
  6125. {
  6126. "location": {
  6127. "physicalLocation": {
  6128. "artifactLocation": {
  6129. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6130. },
  6131. "region": {
  6132. "startLine": 822,
  6133. "startColumn": 16
  6134. }
  6135. }
  6136. },
  6137. "importance": "unimportant"
  6138. },
  6139. {
  6140. "location": {
  6141. "physicalLocation": {
  6142. "artifactLocation": {
  6143. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6144. },
  6145. "region": {
  6146. "startLine": 824,
  6147. "startColumn": 25
  6148. }
  6149. },
  6150. "message": {
  6151. "text": "\"grouprecord\" ist nicht initialisiert"
  6152. }
  6153. },
  6154. "kinds": [
  6155. "declaration"
  6156. ],
  6157. "importance": "essential"
  6158. },
  6159. {
  6160. "location": {
  6161. "physicalLocation": {
  6162. "artifactLocation": {
  6163. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6164. },
  6165. "region": {
  6166. "startLine": 825,
  6167. "startColumn": 28
  6168. }
  6169. },
  6170. "message": {
  6171. "text": "\"grouprecord\" ist eine Ausgabe von \"OT::IntType<unsigned int,4>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  6172. }
  6173. },
  6174. "kinds": [
  6175. "declaration"
  6176. ],
  6177. "importance": "important"
  6178. },
  6179. {
  6180. "location": {
  6181. "physicalLocation": {
  6182. "artifactLocation": {
  6183. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6184. },
  6185. "region": {
  6186. "startLine": 826,
  6187. "startColumn": 26
  6188. }
  6189. }
  6190. },
  6191. "importance": "unimportant"
  6192. },
  6193. {
  6194. "location": {
  6195. "physicalLocation": {
  6196. "artifactLocation": {
  6197. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6198. },
  6199. "region": {
  6200. "startLine": 827,
  6201. "startColumn": 22
  6202. }
  6203. }
  6204. },
  6205. "importance": "unimportant"
  6206. },
  6207. {
  6208. "location": {
  6209. "physicalLocation": {
  6210. "artifactLocation": {
  6211. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6212. },
  6213. "region": {
  6214. "startLine": 828,
  6215. "startColumn": 33
  6216. }
  6217. }
  6218. },
  6219. "importance": "unimportant"
  6220. },
  6221. {
  6222. "location": {
  6223. "physicalLocation": {
  6224. "artifactLocation": {
  6225. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6226. },
  6227. "region": {
  6228. "startLine": 830,
  6229. "startColumn": 16
  6230. }
  6231. }
  6232. },
  6233. "importance": "unimportant"
  6234. },
  6235. {
  6236. "location": {
  6237. "physicalLocation": {
  6238. "artifactLocation": {
  6239. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6240. },
  6241. "region": {
  6242. "startLine": 831,
  6243. "startColumn": 14
  6244. }
  6245. }
  6246. },
  6247. "importance": "unimportant"
  6248. },
  6249. {
  6250. "location": {
  6251. "physicalLocation": {
  6252. "artifactLocation": {
  6253. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6254. },
  6255. "region": {
  6256. "startLine": 832,
  6257. "startColumn": 10
  6258. }
  6259. }
  6260. },
  6261. "importance": "unimportant"
  6262. },
  6263. {
  6264. "location": {
  6265. "physicalLocation": {
  6266. "artifactLocation": {
  6267. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6268. },
  6269. "region": {
  6270. "startLine": 825,
  6271. "startColumn": 2
  6272. }
  6273. },
  6274. "message": {
  6275. "text": "\"grouprecord\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  6276. }
  6277. },
  6278. "kinds": [
  6279. "usage"
  6280. ],
  6281. "importance": "essential"
  6282. }
  6283. ]
  6284. }
  6285. ]
  6286. }
  6287. ]
  6288. },
  6289. {
  6290. "ruleId": "C6001",
  6291. "message": {
  6292. "text": "Nicht initialisierter Speicher \"grouprecord\" wird verwendet."
  6293. },
  6294. "locations": [
  6295. {
  6296. "physicalLocation": {
  6297. "artifactLocation": {
  6298. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6299. },
  6300. "region": {
  6301. "startLine": 825,
  6302. "startColumn": 2,
  6303. "endLine": 825,
  6304. "endColumn": 2
  6305. }
  6306. },
  6307. "logicalLocations": [
  6308. {
  6309. "decoratedName": "??$serialize@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@V<lambda_53f37dd2cf59066c87178e8e44b188d7>@@AEBU<unnamed-type-hb_identity>@@$0A@@@$0A@@CmapSubtableFormat12@OT@@QEAAXPEAUhb_serialize_context_t@@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@V<lambda_53f37dd2cf59066c87178e8e44b188d7>@@AEBU<unnamed-type-hb_identity>@@$0A@@@@Z",
  6310. "kind": "function"
  6311. }
  6312. ]
  6313. }
  6314. ],
  6315. "codeFlows": [
  6316. {
  6317. "threadFlows": [
  6318. {
  6319. "locations": [
  6320. {
  6321. "location": {
  6322. "physicalLocation": {
  6323. "artifactLocation": {
  6324. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6325. },
  6326. "region": {
  6327. "startLine": 807,
  6328. "startColumn": 10
  6329. }
  6330. }
  6331. },
  6332. "importance": "unimportant"
  6333. },
  6334. {
  6335. "location": {
  6336. "physicalLocation": {
  6337. "artifactLocation": {
  6338. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6339. },
  6340. "region": {
  6341. "startLine": 808,
  6342. "startColumn": 14
  6343. }
  6344. }
  6345. },
  6346. "importance": "unimportant"
  6347. },
  6348. {
  6349. "location": {
  6350. "physicalLocation": {
  6351. "artifactLocation": {
  6352. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6353. },
  6354. "region": {
  6355. "startLine": 809,
  6356. "startColumn": 9
  6357. }
  6358. }
  6359. },
  6360. "importance": "unimportant"
  6361. },
  6362. {
  6363. "location": {
  6364. "physicalLocation": {
  6365. "artifactLocation": {
  6366. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6367. },
  6368. "region": {
  6369. "startLine": 811,
  6370. "startColumn": 20
  6371. }
  6372. }
  6373. },
  6374. "importance": "unimportant"
  6375. },
  6376. {
  6377. "location": {
  6378. "physicalLocation": {
  6379. "artifactLocation": {
  6380. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6381. },
  6382. "region": {
  6383. "startLine": 811,
  6384. "startColumn": 57
  6385. }
  6386. }
  6387. },
  6388. "importance": "unimportant"
  6389. },
  6390. {
  6391. "location": {
  6392. "physicalLocation": {
  6393. "artifactLocation": {
  6394. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6395. },
  6396. "region": {
  6397. "startLine": 812,
  6398. "startColumn": 20
  6399. }
  6400. }
  6401. },
  6402. "importance": "unimportant"
  6403. },
  6404. {
  6405. "location": {
  6406. "physicalLocation": {
  6407. "artifactLocation": {
  6408. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6409. },
  6410. "region": {
  6411. "startLine": 814,
  6412. "startColumn": 26
  6413. }
  6414. }
  6415. },
  6416. "importance": "unimportant"
  6417. },
  6418. {
  6419. "location": {
  6420. "physicalLocation": {
  6421. "artifactLocation": {
  6422. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6423. },
  6424. "region": {
  6425. "startLine": 814,
  6426. "startColumn": 22
  6427. }
  6428. }
  6429. },
  6430. "importance": "unimportant"
  6431. },
  6432. {
  6433. "location": {
  6434. "physicalLocation": {
  6435. "artifactLocation": {
  6436. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6437. },
  6438. "region": {
  6439. "startLine": 816,
  6440. "startColumn": 25
  6441. }
  6442. }
  6443. },
  6444. "importance": "unimportant"
  6445. },
  6446. {
  6447. "location": {
  6448. "physicalLocation": {
  6449. "artifactLocation": {
  6450. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6451. },
  6452. "region": {
  6453. "startLine": 818,
  6454. "startColumn": 16
  6455. }
  6456. }
  6457. },
  6458. "importance": "unimportant"
  6459. },
  6460. {
  6461. "location": {
  6462. "physicalLocation": {
  6463. "artifactLocation": {
  6464. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6465. },
  6466. "region": {
  6467. "startLine": 819,
  6468. "startColumn": 14
  6469. }
  6470. }
  6471. },
  6472. "importance": "unimportant"
  6473. },
  6474. {
  6475. "location": {
  6476. "physicalLocation": {
  6477. "artifactLocation": {
  6478. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6479. },
  6480. "region": {
  6481. "startLine": 820,
  6482. "startColumn": 10
  6483. }
  6484. }
  6485. },
  6486. "importance": "unimportant"
  6487. },
  6488. {
  6489. "location": {
  6490. "physicalLocation": {
  6491. "artifactLocation": {
  6492. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6493. },
  6494. "region": {
  6495. "startLine": 814,
  6496. "startColumn": 26
  6497. }
  6498. }
  6499. },
  6500. "importance": "unimportant"
  6501. },
  6502. {
  6503. "location": {
  6504. "physicalLocation": {
  6505. "artifactLocation": {
  6506. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6507. },
  6508. "region": {
  6509. "startLine": 814,
  6510. "startColumn": 22
  6511. }
  6512. }
  6513. },
  6514. "importance": "unimportant"
  6515. },
  6516. {
  6517. "location": {
  6518. "physicalLocation": {
  6519. "artifactLocation": {
  6520. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6521. },
  6522. "region": {
  6523. "startLine": 816,
  6524. "startColumn": 25
  6525. }
  6526. }
  6527. },
  6528. "importance": "unimportant"
  6529. },
  6530. {
  6531. "location": {
  6532. "physicalLocation": {
  6533. "artifactLocation": {
  6534. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6535. },
  6536. "region": {
  6537. "startLine": 822,
  6538. "startColumn": 16
  6539. }
  6540. }
  6541. },
  6542. "importance": "unimportant"
  6543. },
  6544. {
  6545. "location": {
  6546. "physicalLocation": {
  6547. "artifactLocation": {
  6548. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6549. },
  6550. "region": {
  6551. "startLine": 824,
  6552. "startColumn": 25
  6553. }
  6554. },
  6555. "message": {
  6556. "text": "\"grouprecord\" ist nicht initialisiert"
  6557. }
  6558. },
  6559. "kinds": [
  6560. "declaration"
  6561. ],
  6562. "importance": "essential"
  6563. },
  6564. {
  6565. "location": {
  6566. "physicalLocation": {
  6567. "artifactLocation": {
  6568. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6569. },
  6570. "region": {
  6571. "startLine": 825,
  6572. "startColumn": 28
  6573. }
  6574. },
  6575. "message": {
  6576. "text": "\"grouprecord\" ist eine Ausgabe von \"OT::IntType<unsigned int,4>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  6577. }
  6578. },
  6579. "kinds": [
  6580. "declaration"
  6581. ],
  6582. "importance": "important"
  6583. },
  6584. {
  6585. "location": {
  6586. "physicalLocation": {
  6587. "artifactLocation": {
  6588. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6589. },
  6590. "region": {
  6591. "startLine": 826,
  6592. "startColumn": 26
  6593. }
  6594. }
  6595. },
  6596. "importance": "unimportant"
  6597. },
  6598. {
  6599. "location": {
  6600. "physicalLocation": {
  6601. "artifactLocation": {
  6602. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6603. },
  6604. "region": {
  6605. "startLine": 827,
  6606. "startColumn": 22
  6607. }
  6608. }
  6609. },
  6610. "importance": "unimportant"
  6611. },
  6612. {
  6613. "location": {
  6614. "physicalLocation": {
  6615. "artifactLocation": {
  6616. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6617. },
  6618. "region": {
  6619. "startLine": 828,
  6620. "startColumn": 33
  6621. }
  6622. }
  6623. },
  6624. "importance": "unimportant"
  6625. },
  6626. {
  6627. "location": {
  6628. "physicalLocation": {
  6629. "artifactLocation": {
  6630. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6631. },
  6632. "region": {
  6633. "startLine": 830,
  6634. "startColumn": 16
  6635. }
  6636. }
  6637. },
  6638. "importance": "unimportant"
  6639. },
  6640. {
  6641. "location": {
  6642. "physicalLocation": {
  6643. "artifactLocation": {
  6644. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6645. },
  6646. "region": {
  6647. "startLine": 831,
  6648. "startColumn": 14
  6649. }
  6650. }
  6651. },
  6652. "importance": "unimportant"
  6653. },
  6654. {
  6655. "location": {
  6656. "physicalLocation": {
  6657. "artifactLocation": {
  6658. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6659. },
  6660. "region": {
  6661. "startLine": 832,
  6662. "startColumn": 10
  6663. }
  6664. }
  6665. },
  6666. "importance": "unimportant"
  6667. },
  6668. {
  6669. "location": {
  6670. "physicalLocation": {
  6671. "artifactLocation": {
  6672. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6673. },
  6674. "region": {
  6675. "startLine": 825,
  6676. "startColumn": 2
  6677. }
  6678. },
  6679. "message": {
  6680. "text": "\"grouprecord\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  6681. }
  6682. },
  6683. "kinds": [
  6684. "usage"
  6685. ],
  6686. "importance": "essential"
  6687. }
  6688. ]
  6689. }
  6690. ]
  6691. }
  6692. ]
  6693. },
  6694. {
  6695. "ruleId": "C6001",
  6696. "message": {
  6697. "text": "Nicht initialisierter Speicher \"record\" wird verwendet."
  6698. },
  6699. "locations": [
  6700. {
  6701. "physicalLocation": {
  6702. "artifactLocation": {
  6703. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6704. },
  6705. "region": {
  6706. "startLine": 839,
  6707. "startColumn": 5,
  6708. "endLine": 839,
  6709. "endColumn": 5
  6710. }
  6711. },
  6712. "logicalLocations": [
  6713. {
  6714. "decoratedName": "??$serialize@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@V<lambda_53f37dd2cf59066c87178e8e44b188d7>@@AEBU<unnamed-type-hb_identity>@@$0A@@@$0A@@CmapSubtableFormat12@OT@@QEAAXPEAUhb_serialize_context_t@@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@V<lambda_53f37dd2cf59066c87178e8e44b188d7>@@AEBU<unnamed-type-hb_identity>@@$0A@@@@Z",
  6715. "kind": "function"
  6716. }
  6717. ]
  6718. }
  6719. ],
  6720. "codeFlows": [
  6721. {
  6722. "threadFlows": [
  6723. {
  6724. "locations": [
  6725. {
  6726. "location": {
  6727. "physicalLocation": {
  6728. "artifactLocation": {
  6729. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6730. },
  6731. "region": {
  6732. "startLine": 807,
  6733. "startColumn": 10
  6734. }
  6735. }
  6736. },
  6737. "importance": "unimportant"
  6738. },
  6739. {
  6740. "location": {
  6741. "physicalLocation": {
  6742. "artifactLocation": {
  6743. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6744. },
  6745. "region": {
  6746. "startLine": 808,
  6747. "startColumn": 14
  6748. }
  6749. }
  6750. },
  6751. "importance": "unimportant"
  6752. },
  6753. {
  6754. "location": {
  6755. "physicalLocation": {
  6756. "artifactLocation": {
  6757. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6758. },
  6759. "region": {
  6760. "startLine": 809,
  6761. "startColumn": 9
  6762. }
  6763. }
  6764. },
  6765. "importance": "unimportant"
  6766. },
  6767. {
  6768. "location": {
  6769. "physicalLocation": {
  6770. "artifactLocation": {
  6771. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6772. },
  6773. "region": {
  6774. "startLine": 811,
  6775. "startColumn": 20
  6776. }
  6777. }
  6778. },
  6779. "importance": "unimportant"
  6780. },
  6781. {
  6782. "location": {
  6783. "physicalLocation": {
  6784. "artifactLocation": {
  6785. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6786. },
  6787. "region": {
  6788. "startLine": 811,
  6789. "startColumn": 57
  6790. }
  6791. }
  6792. },
  6793. "importance": "unimportant"
  6794. },
  6795. {
  6796. "location": {
  6797. "physicalLocation": {
  6798. "artifactLocation": {
  6799. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6800. },
  6801. "region": {
  6802. "startLine": 812,
  6803. "startColumn": 20
  6804. }
  6805. }
  6806. },
  6807. "importance": "unimportant"
  6808. },
  6809. {
  6810. "location": {
  6811. "physicalLocation": {
  6812. "artifactLocation": {
  6813. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6814. },
  6815. "region": {
  6816. "startLine": 814,
  6817. "startColumn": 26
  6818. }
  6819. }
  6820. },
  6821. "importance": "unimportant"
  6822. },
  6823. {
  6824. "location": {
  6825. "physicalLocation": {
  6826. "artifactLocation": {
  6827. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6828. },
  6829. "region": {
  6830. "startLine": 838,
  6831. "startColumn": 27
  6832. }
  6833. },
  6834. "message": {
  6835. "text": "\"record\" ist nicht initialisiert"
  6836. }
  6837. },
  6838. "kinds": [
  6839. "declaration"
  6840. ],
  6841. "importance": "essential"
  6842. },
  6843. {
  6844. "location": {
  6845. "physicalLocation": {
  6846. "artifactLocation": {
  6847. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6848. },
  6849. "region": {
  6850. "startLine": 839,
  6851. "startColumn": 26
  6852. }
  6853. },
  6854. "message": {
  6855. "text": "\"record\" ist eine Ausgabe von \"OT::IntType<unsigned int,4>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  6856. }
  6857. },
  6858. "kinds": [
  6859. "declaration"
  6860. ],
  6861. "importance": "important"
  6862. },
  6863. {
  6864. "location": {
  6865. "physicalLocation": {
  6866. "artifactLocation": {
  6867. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6868. },
  6869. "region": {
  6870. "startLine": 840,
  6871. "startColumn": 24
  6872. }
  6873. }
  6874. },
  6875. "importance": "unimportant"
  6876. },
  6877. {
  6878. "location": {
  6879. "physicalLocation": {
  6880. "artifactLocation": {
  6881. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6882. },
  6883. "region": {
  6884. "startLine": 841,
  6885. "startColumn": 20
  6886. }
  6887. }
  6888. },
  6889. "importance": "unimportant"
  6890. },
  6891. {
  6892. "location": {
  6893. "physicalLocation": {
  6894. "artifactLocation": {
  6895. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6896. },
  6897. "region": {
  6898. "startLine": 842,
  6899. "startColumn": 36
  6900. }
  6901. }
  6902. },
  6903. "importance": "unimportant"
  6904. },
  6905. {
  6906. "location": {
  6907. "physicalLocation": {
  6908. "artifactLocation": {
  6909. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6910. },
  6911. "region": {
  6912. "startLine": 844,
  6913. "startColumn": 18
  6914. }
  6915. }
  6916. },
  6917. "importance": "unimportant"
  6918. },
  6919. {
  6920. "location": {
  6921. "physicalLocation": {
  6922. "artifactLocation": {
  6923. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6924. },
  6925. "region": {
  6926. "startLine": 845,
  6927. "startColumn": 20
  6928. }
  6929. }
  6930. },
  6931. "importance": "unimportant"
  6932. },
  6933. {
  6934. "location": {
  6935. "physicalLocation": {
  6936. "artifactLocation": {
  6937. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6938. },
  6939. "region": {
  6940. "startLine": 846,
  6941. "startColumn": 18
  6942. }
  6943. }
  6944. },
  6945. "importance": "unimportant"
  6946. },
  6947. {
  6948. "location": {
  6949. "physicalLocation": {
  6950. "artifactLocation": {
  6951. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6952. },
  6953. "region": {
  6954. "startLine": 847,
  6955. "startColumn": 22
  6956. }
  6957. }
  6958. },
  6959. "importance": "unimportant"
  6960. },
  6961. {
  6962. "location": {
  6963. "physicalLocation": {
  6964. "artifactLocation": {
  6965. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6966. },
  6967. "region": {
  6968. "startLine": 848,
  6969. "startColumn": 3
  6970. }
  6971. }
  6972. },
  6973. "importance": "unimportant"
  6974. },
  6975. {
  6976. "location": {
  6977. "physicalLocation": {
  6978. "artifactLocation": {
  6979. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  6980. },
  6981. "region": {
  6982. "startLine": 839,
  6983. "startColumn": 5
  6984. }
  6985. },
  6986. "message": {
  6987. "text": "\"record\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  6988. }
  6989. },
  6990. "kinds": [
  6991. "usage"
  6992. ],
  6993. "importance": "essential"
  6994. }
  6995. ]
  6996. }
  6997. ]
  6998. }
  6999. ]
  7000. },
  7001. {
  7002. "ruleId": "C6011",
  7003. "message": {
  7004. "text": "Dereferenzierender NULL-Zeiger \"idRangeOffset\". "
  7005. },
  7006. "locations": [
  7007. {
  7008. "physicalLocation": {
  7009. "artifactLocation": {
  7010. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  7011. },
  7012. "region": {
  7013. "startLine": 308,
  7014. "startColumn": 24
  7015. }
  7016. },
  7017. "logicalLocations": [
  7018. {
  7019. "decoratedName": "??$serialize_rangeoffset_glyid@U?$hb_array_t@$$CBU?$hb_pair_t@II@@@@$0A@@CmapSubtableFormat4@OT@@QEAAPEAU?$IntType@G$01@1@PEAUhb_serialize_context_t@@U?$hb_array_t@$$CBU?$hb_pair_t@II@@@@PEAU21@2PEAU?$IntType@F$01@1@I@Z",
  7020. "kind": "function"
  7021. }
  7022. ]
  7023. }
  7024. ],
  7025. "codeFlows": [
  7026. {
  7027. "threadFlows": [
  7028. {
  7029. "locations": [
  7030. {
  7031. "location": {
  7032. "physicalLocation": {
  7033. "artifactLocation": {
  7034. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  7035. },
  7036. "region": {
  7037. "startLine": 299,
  7038. "startColumn": 14
  7039. }
  7040. }
  7041. },
  7042. "importance": "unimportant"
  7043. },
  7044. {
  7045. "location": {
  7046. "physicalLocation": {
  7047. "artifactLocation": {
  7048. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  7049. },
  7050. "region": {
  7051. "startLine": 301,
  7052. "startColumn": 15
  7053. }
  7054. }
  7055. },
  7056. "importance": "unimportant"
  7057. },
  7058. {
  7059. "location": {
  7060. "physicalLocation": {
  7061. "artifactLocation": {
  7062. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  7063. },
  7064. "region": {
  7065. "startLine": 302,
  7066. "startColumn": 9
  7067. }
  7068. },
  7069. "message": {
  7070. "text": "\"idRangeOffset\" kann NULL sein. (Diese Verzweigung überspringen)"
  7071. }
  7072. },
  7073. "kinds": [
  7074. "branch"
  7075. ],
  7076. "importance": "important"
  7077. },
  7078. {
  7079. "location": {
  7080. "physicalLocation": {
  7081. "artifactLocation": {
  7082. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  7083. },
  7084. "region": {
  7085. "startLine": 303,
  7086. "startColumn": 9
  7087. }
  7088. },
  7089. "message": {
  7090. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  7091. }
  7092. },
  7093. "kinds": [
  7094. "branch"
  7095. ],
  7096. "importance": "important"
  7097. },
  7098. {
  7099. "location": {
  7100. "physicalLocation": {
  7101. "artifactLocation": {
  7102. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  7103. },
  7104. "region": {
  7105. "startLine": 306,
  7106. "startColumn": 1
  7107. }
  7108. }
  7109. },
  7110. "importance": "unimportant"
  7111. },
  7112. {
  7113. "location": {
  7114. "physicalLocation": {
  7115. "artifactLocation": {
  7116. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  7117. },
  7118. "region": {
  7119. "startLine": 306,
  7120. "startColumn": 9
  7121. }
  7122. }
  7123. },
  7124. "importance": "unimportant"
  7125. },
  7126. {
  7127. "location": {
  7128. "physicalLocation": {
  7129. "artifactLocation": {
  7130. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  7131. },
  7132. "region": {
  7133. "startLine": 305,
  7134. "startColumn": 19
  7135. }
  7136. }
  7137. },
  7138. "importance": "unimportant"
  7139. },
  7140. {
  7141. "location": {
  7142. "physicalLocation": {
  7143. "artifactLocation": {
  7144. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  7145. },
  7146. "region": {
  7147. "startLine": 308,
  7148. "startColumn": 24
  7149. }
  7150. },
  7151. "message": {
  7152. "text": "\"idRangeOffset\" wird dereferenziert, kann jedoch weiterhin NULL sein."
  7153. }
  7154. },
  7155. "kinds": [
  7156. "usage"
  7157. ],
  7158. "importance": "essential"
  7159. }
  7160. ]
  7161. }
  7162. ]
  7163. }
  7164. ]
  7165. }
  7166. ],
  7167. "tool": {
  7168. "driver": {
  7169. "name": "PREfast",
  7170. "fullName": "PREfast Code Analysis",
  7171. "version": "14.29.30159.0",
  7172. "informationUri": "https://aka.ms/cpp/ca"
  7173. }
  7174. },
  7175. "invocations": [
  7176. {
  7177. "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_204d8d99ast -typedil -f ..\\..\\thirdparty\\harfbuzz\\src\\hb-common.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-common.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",
  7178. "executionSuccessful": true
  7179. }
  7180. ],
  7181. "artifacts": [
  7182. {
  7183. "location": {
  7184. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  7185. },
  7186. "roles": [
  7187. "resultFile"
  7188. ],
  7189. "hashes": {
  7190. "md5": "ff5a8277d5fcb14cbcc2b5e06feda4f6"
  7191. }
  7192. },
  7193. {
  7194. "location": {
  7195. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  7196. },
  7197. "roles": [
  7198. "resultFile"
  7199. ],
  7200. "hashes": {
  7201. "md5": "328ea1e7c279bd128f8d02e53b3c69b8"
  7202. }
  7203. },
  7204. {
  7205. "location": {
  7206. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set-invertible.hh"
  7207. },
  7208. "roles": [
  7209. "resultFile"
  7210. ],
  7211. "hashes": {
  7212. "md5": "b2a484c8afaf6a6642f15c165c53e321"
  7213. }
  7214. },
  7215. {
  7216. "location": {
  7217. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  7218. },
  7219. "roles": [
  7220. "resultFile"
  7221. ],
  7222. "hashes": {
  7223. "md5": "6071d676b81588f3cab4f0cb54b35ba4"
  7224. }
  7225. },
  7226. {
  7227. "location": {
  7228. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  7229. },
  7230. "roles": [
  7231. "resultFile"
  7232. ],
  7233. "hashes": {
  7234. "md5": "8069474abf527e6766a557ec56acd85b"
  7235. }
  7236. },
  7237. {
  7238. "location": {
  7239. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-map.cc"
  7240. },
  7241. "roles": [
  7242. "analysisTarget",
  7243. "resultFile"
  7244. ],
  7245. "hashes": {
  7246. "md5": "e32990aced6a7aca7a5d4d13eeecea21"
  7247. }
  7248. },
  7249. {
  7250. "location": {
  7251. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-vector.hh"
  7252. },
  7253. "roles": [
  7254. "resultFile"
  7255. ],
  7256. "hashes": {
  7257. "md5": "c61e323648e53704f465c3fee7b18ce4"
  7258. }
  7259. },
  7260. {
  7261. "location": {
  7262. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  7263. },
  7264. "roles": [
  7265. "resultFile"
  7266. ],
  7267. "hashes": {
  7268. "md5": "556630f4a504776f82f927c0a7f1de43"
  7269. }
  7270. },
  7271. {
  7272. "location": {
  7273. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb.hh"
  7274. },
  7275. "hashes": {
  7276. "md5": "9e83818e264776a5a039633ad0af7e40"
  7277. }
  7278. },
  7279. {
  7280. "location": {
  7281. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-config.hh"
  7282. },
  7283. "hashes": {
  7284. "md5": "72e9b9ac69b98f07a023615f6a20fa88"
  7285. }
  7286. },
  7287. {
  7288. "location": {
  7289. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb.h"
  7290. },
  7291. "hashes": {
  7292. "md5": "a71dddd9ceffbe9ad7735e965fa31fa4"
  7293. }
  7294. },
  7295. {
  7296. "location": {
  7297. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-blob.h"
  7298. },
  7299. "hashes": {
  7300. "md5": "150c53768a43873da08b8fe485f31b11"
  7301. }
  7302. },
  7303. {
  7304. "location": {
  7305. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-common.h"
  7306. },
  7307. "hashes": {
  7308. "md5": "6d34414d1aa6c8312eb518eb5e089698"
  7309. }
  7310. },
  7311. {
  7312. "location": {
  7313. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-rename.h"
  7314. },
  7315. "hashes": {
  7316. "md5": "cdc9086001bbf18983525796b95a3a32"
  7317. }
  7318. },
  7319. {
  7320. "location": {
  7321. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-buffer.h"
  7322. },
  7323. "hashes": {
  7324. "md5": "280ee9b0cc5e21dfb997fe5e1a4fd92d"
  7325. }
  7326. },
  7327. {
  7328. "location": {
  7329. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-unicode.h"
  7330. },
  7331. "hashes": {
  7332. "md5": "7e94d2c5e3e1a7af4804b15af817f5dd"
  7333. }
  7334. },
  7335. {
  7336. "location": {
  7337. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.h"
  7338. },
  7339. "hashes": {
  7340. "md5": "a2621e17ead0c30af0c1018708c64c34"
  7341. }
  7342. },
  7343. {
  7344. "location": {
  7345. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.h"
  7346. },
  7347. "hashes": {
  7348. "md5": "f55b5e142357c36cb7f2b58d24f2d88c"
  7349. }
  7350. },
  7351. {
  7352. "location": {
  7353. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-set.h"
  7354. },
  7355. "hashes": {
  7356. "md5": "20a8f4c0626c2b2d6d73e0a04cd3d017"
  7357. }
  7358. },
  7359. {
  7360. "location": {
  7361. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-draw.h"
  7362. },
  7363. "hashes": {
  7364. "md5": "917b2456c4d3228be5ff3d5aab59e884"
  7365. }
  7366. },
  7367. {
  7368. "location": {
  7369. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-deprecated.h"
  7370. },
  7371. "hashes": {
  7372. "md5": "d779af772cc5ede9ddba22cb607ab06c"
  7373. }
  7374. },
  7375. {
  7376. "location": {
  7377. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-map.h"
  7378. },
  7379. "hashes": {
  7380. "md5": "654598015cf2ffd6992e511c67d77617"
  7381. }
  7382. },
  7383. {
  7384. "location": {
  7385. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape.h"
  7386. },
  7387. "hashes": {
  7388. "md5": "bb4be6a7031101fd4a62ae8c7d4c5000"
  7389. }
  7390. },
  7391. {
  7392. "location": {
  7393. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape-plan.h"
  7394. },
  7395. "hashes": {
  7396. "md5": "e8eac4b976461e1038c585d8fceec10b"
  7397. }
  7398. },
  7399. {
  7400. "location": {
  7401. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-style.h"
  7402. },
  7403. "hashes": {
  7404. "md5": "e5060f7cbf3cdf79a1e907601c33066a"
  7405. }
  7406. },
  7407. {
  7408. "location": {
  7409. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-version.h"
  7410. },
  7411. "hashes": {
  7412. "md5": "2ce6fb47c095f534d1aaec73565e454a"
  7413. }
  7414. },
  7415. {
  7416. "location": {
  7417. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot.h"
  7418. },
  7419. "hashes": {
  7420. "md5": "88b79a72bc7fe966bb770648ea55587e"
  7421. }
  7422. },
  7423. {
  7424. "location": {
  7425. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color.h"
  7426. },
  7427. "hashes": {
  7428. "md5": "7a60ba0967b0441b9991a0cbca31810b"
  7429. }
  7430. },
  7431. {
  7432. "location": {
  7433. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name.h"
  7434. },
  7435. "hashes": {
  7436. "md5": "d5811ae99bfc284dc9e98ba3172b1119"
  7437. }
  7438. },
  7439. {
  7440. "location": {
  7441. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-deprecated.h"
  7442. },
  7443. "hashes": {
  7444. "md5": "7f05c4d984f2283941c955dc59be58ed"
  7445. }
  7446. },
  7447. {
  7448. "location": {
  7449. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-font.h"
  7450. },
  7451. "hashes": {
  7452. "md5": "d7ee1240d446af9d1b24937b8ebd74de"
  7453. }
  7454. },
  7455. {
  7456. "location": {
  7457. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.h"
  7458. },
  7459. "hashes": {
  7460. "md5": "e71405022c21180bb9fe727aa758cd29"
  7461. }
  7462. },
  7463. {
  7464. "location": {
  7465. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-math.h"
  7466. },
  7467. "hashes": {
  7468. "md5": "0da4f3b18ba2317ac94ae697e7fc9a81"
  7469. }
  7470. },
  7471. {
  7472. "location": {
  7473. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-meta.h"
  7474. },
  7475. "hashes": {
  7476. "md5": "7036bc3baf74206ebefe43d2004fac13"
  7477. }
  7478. },
  7479. {
  7480. "location": {
  7481. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-metrics.h"
  7482. },
  7483. "hashes": {
  7484. "md5": "afb89348296fe25677fd13a8e1fab75c"
  7485. }
  7486. },
  7487. {
  7488. "location": {
  7489. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shape.h"
  7490. },
  7491. "hashes": {
  7492. "md5": "9e959af0731f2bdcc3f12fc93cf6fc83"
  7493. }
  7494. },
  7495. {
  7496. "location": {
  7497. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-var.h"
  7498. },
  7499. "hashes": {
  7500. "md5": "1f00f7feb631ffad88770150180e67b2"
  7501. }
  7502. },
  7503. {
  7504. "location": {
  7505. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat.h"
  7506. },
  7507. "hashes": {
  7508. "md5": "0c8d18fc93cb1113eacb718e4ba198fe"
  7509. }
  7510. },
  7511. {
  7512. "location": {
  7513. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout.h"
  7514. },
  7515. "hashes": {
  7516. "md5": "4b4a1524be1b795c0704d88437c3aca3"
  7517. }
  7518. },
  7519. {
  7520. "location": {
  7521. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  7522. },
  7523. "roles": [
  7524. "resultFile"
  7525. ],
  7526. "hashes": {
  7527. "md5": "cc6ecf9b201913bfc4f25c97e91afbfa"
  7528. }
  7529. },
  7530. {
  7531. "location": {
  7532. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-meta.hh"
  7533. },
  7534. "hashes": {
  7535. "md5": "24131b8ef7b63f8257bd7f45fbeb32c6"
  7536. }
  7537. },
  7538. {
  7539. "location": {
  7540. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-mutex.hh"
  7541. },
  7542. "hashes": {
  7543. "md5": "99002e53372a94ec3f8c4ee03e753501"
  7544. }
  7545. },
  7546. {
  7547. "location": {
  7548. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-number.hh"
  7549. },
  7550. "hashes": {
  7551. "md5": "f80eb7a71558c6caeab4bf03cf3a7413"
  7552. }
  7553. },
  7554. {
  7555. "location": {
  7556. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-atomic.hh"
  7557. },
  7558. "hashes": {
  7559. "md5": "951183c1ed2181c1d42da812d09215d5"
  7560. }
  7561. },
  7562. {
  7563. "location": {
  7564. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-null.hh"
  7565. },
  7566. "hashes": {
  7567. "md5": "060426e619ef484f2b13a79544199615"
  7568. }
  7569. },
  7570. {
  7571. "location": {
  7572. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-algs.hh"
  7573. },
  7574. "hashes": {
  7575. "md5": "db4f6801f6deef0087e10e6e12315333"
  7576. }
  7577. },
  7578. {
  7579. "location": {
  7580. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  7581. },
  7582. "roles": [
  7583. "resultFile"
  7584. ],
  7585. "hashes": {
  7586. "md5": "8b8487829b25e2959f69e16f4e9eb104"
  7587. }
  7588. },
  7589. {
  7590. "location": {
  7591. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-debug.hh"
  7592. },
  7593. "hashes": {
  7594. "md5": "e04bd31cda6612ff06cce01d05304d32"
  7595. }
  7596. },
  7597. {
  7598. "location": {
  7599. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-array.hh"
  7600. },
  7601. "hashes": {
  7602. "md5": "8e209d94f950caa65d412ee8bde3f363"
  7603. }
  7604. },
  7605. {
  7606. "location": {
  7607. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-object.hh"
  7608. },
  7609. "hashes": {
  7610. "md5": "6153e989de17517cbccbfc32f6a96c2f"
  7611. }
  7612. },
  7613. {
  7614. "location": {
  7615. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-map.hh"
  7616. },
  7617. "hashes": {
  7618. "md5": "a7844bbe78b172a6055ed833c319c1dc"
  7619. }
  7620. },
  7621. {
  7622. "location": {
  7623. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  7624. },
  7625. "roles": [
  7626. "resultFile"
  7627. ],
  7628. "hashes": {
  7629. "md5": "353126bead1e62cae5810c1e8fccbb19"
  7630. }
  7631. },
  7632. {
  7633. "location": {
  7634. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-unicode.hh"
  7635. },
  7636. "hashes": {
  7637. "md5": "16f1d95ff99040ed89da6afca082692e"
  7638. }
  7639. },
  7640. {
  7641. "location": {
  7642. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-set-digest.hh"
  7643. },
  7644. "hashes": {
  7645. "md5": "fc2d66eec3097c40c2c9869ea2a9ffa0"
  7646. }
  7647. },
  7648. {
  7649. "location": {
  7650. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-machinery.hh"
  7651. },
  7652. "hashes": {
  7653. "md5": "73d07cdd5dab7386ffb6cc0d01a97345"
  7654. }
  7655. },
  7656. {
  7657. "location": {
  7658. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-blob.hh"
  7659. },
  7660. "hashes": {
  7661. "md5": "3c8f2b1cfb0b66349f2bd7ce23523cd3"
  7662. }
  7663. },
  7664. {
  7665. "location": {
  7666. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-dispatch.hh"
  7667. },
  7668. "hashes": {
  7669. "md5": "241177eed3ec267287217798e8d1a58d"
  7670. }
  7671. },
  7672. {
  7673. "location": {
  7674. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-sanitize.hh"
  7675. },
  7676. "hashes": {
  7677. "md5": "188b6afcc937febb86d0ccfbca27de13"
  7678. }
  7679. },
  7680. {
  7681. "location": {
  7682. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-serialize.hh"
  7683. },
  7684. "hashes": {
  7685. "md5": "177a2f10f3f39c8d62b856177bcf27e2"
  7686. }
  7687. },
  7688. {
  7689. "location": {
  7690. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-pool.hh"
  7691. },
  7692. "hashes": {
  7693. "md5": "2b8edc0ca91f650a204d58a41b08b907"
  7694. }
  7695. },
  7696. {
  7697. "location": {
  7698. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shape.hh"
  7699. },
  7700. "hashes": {
  7701. "md5": "4bbcb40517826ccbe9c2cbf903f5ad2f"
  7702. }
  7703. },
  7704. {
  7705. "location": {
  7706. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-map.hh"
  7707. },
  7708. "hashes": {
  7709. "md5": "b21571cf9c50d022046d38338b608655"
  7710. }
  7711. },
  7712. {
  7713. "location": {
  7714. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.hh"
  7715. },
  7716. "hashes": {
  7717. "md5": "a446739860d83b5ccca95b4f2523c6c6"
  7718. }
  7719. },
  7720. {
  7721. "location": {
  7722. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.hh"
  7723. },
  7724. "roles": [
  7725. "resultFile"
  7726. ],
  7727. "hashes": {
  7728. "md5": "d44aee950fcb503187e9b13c8563875d"
  7729. }
  7730. },
  7731. {
  7732. "location": {
  7733. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.hh"
  7734. },
  7735. "roles": [
  7736. "resultFile"
  7737. ],
  7738. "hashes": {
  7739. "md5": "af006f8e6b4598a6997b531d6a2bcf3a"
  7740. }
  7741. },
  7742. {
  7743. "location": {
  7744. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper.hh"
  7745. },
  7746. "roles": [
  7747. "resultFile"
  7748. ],
  7749. "hashes": {
  7750. "md5": "1e85a9a61d4c84ad83a92ca2f9dabb31"
  7751. }
  7752. },
  7753. {
  7754. "location": {
  7755. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper-list.hh"
  7756. },
  7757. "hashes": {
  7758. "md5": "7b2ff6cdaf723facbc3bf755a21d0493"
  7759. }
  7760. },
  7761. {
  7762. "location": {
  7763. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape-plan.hh"
  7764. },
  7765. "hashes": {
  7766. "md5": "9aac62480877c6bc8123a9db028c168e"
  7767. }
  7768. },
  7769. {
  7770. "location": {
  7771. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face.hh"
  7772. },
  7773. "roles": [
  7774. "resultFile"
  7775. ],
  7776. "hashes": {
  7777. "md5": "263c856b357733232aec1f15d07df495"
  7778. }
  7779. },
  7780. {
  7781. "location": {
  7782. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face-table-list.hh"
  7783. },
  7784. "hashes": {
  7785. "md5": "ec044f287821ff4092a947c833c26ec9"
  7786. }
  7787. },
  7788. {
  7789. "location": {
  7790. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  7791. },
  7792. "roles": [
  7793. "resultFile"
  7794. ],
  7795. "hashes": {
  7796. "md5": "4c330fba65301df988cb2939d3dffa35"
  7797. }
  7798. },
  7799. {
  7800. "location": {
  7801. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset.hh"
  7802. },
  7803. "hashes": {
  7804. "md5": "25c6ff571fa13a6dbf66d4ef05cb5896"
  7805. }
  7806. },
  7807. {
  7808. "location": {
  7809. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset.h"
  7810. },
  7811. "hashes": {
  7812. "md5": "eeee85824ec99c2c18127bd7db14f692"
  7813. }
  7814. },
  7815. {
  7816. "location": {
  7817. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-input.hh"
  7818. },
  7819. "hashes": {
  7820. "md5": "f2c75216169b71f344f7adbea0941b4d"
  7821. }
  7822. },
  7823. {
  7824. "location": {
  7825. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-accelerator.hh"
  7826. },
  7827. "hashes": {
  7828. "md5": "ba12ab09aee1fb822ba02eb799a10522"
  7829. }
  7830. },
  7831. {
  7832. "location": {
  7833. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-multimap.hh"
  7834. },
  7835. "hashes": {
  7836. "md5": "1fb05badd1865ed9c8eb34899de34279"
  7837. }
  7838. },
  7839. {
  7840. "location": {
  7841. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-bimap.hh"
  7842. },
  7843. "hashes": {
  7844. "md5": "3236cfed6d09c1a8b030ba667bb8b41f"
  7845. }
  7846. },
  7847. {
  7848. "location": {
  7849. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/Common/Coverage.hh"
  7850. },
  7851. "roles": [
  7852. "resultFile"
  7853. ],
  7854. "hashes": {
  7855. "md5": "d830c78a0d4bd3f6f789d2fc96fde11d"
  7856. }
  7857. },
  7858. {
  7859. "location": {
  7860. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsubgpos.hh"
  7861. },
  7862. "roles": [
  7863. "resultFile"
  7864. ],
  7865. "hashes": {
  7866. "md5": "e2ac9b05249c15a50ef91e5ab6466279"
  7867. }
  7868. },
  7869. {
  7870. "location": {
  7871. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  7872. },
  7873. "roles": [
  7874. "resultFile"
  7875. ],
  7876. "hashes": {
  7877. "md5": "a4588d624a9192615a0ba6e1ff90d077"
  7878. }
  7879. },
  7880. {
  7881. "location": {
  7882. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  7883. },
  7884. "roles": [
  7885. "resultFile"
  7886. ],
  7887. "hashes": {
  7888. "md5": "f52ad3a43931b7c0fc91cc8827897691"
  7889. }
  7890. },
  7891. {
  7892. "location": {
  7893. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  7894. },
  7895. "roles": [
  7896. "resultFile"
  7897. ],
  7898. "hashes": {
  7899. "md5": "1f2f19e20ede933ed209b3c74eb5f1cd"
  7900. }
  7901. },
  7902. {
  7903. "location": {
  7904. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GPOS/SinglePos.hh"
  7905. },
  7906. "roles": [
  7907. "resultFile"
  7908. ],
  7909. "hashes": {
  7910. "md5": "b8da2baf30f3c40f5a9a27e64ccb8232"
  7911. }
  7912. },
  7913. {
  7914. "location": {
  7915. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-kerx-table.hh"
  7916. },
  7917. "roles": [
  7918. "resultFile"
  7919. ],
  7920. "hashes": {
  7921. "md5": "dca0a1672055b36f5ace45ab4b191589"
  7922. }
  7923. },
  7924. {
  7925. "location": {
  7926. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.cc"
  7927. },
  7928. "roles": [
  7929. "analysisTarget"
  7930. ],
  7931. "hashes": {
  7932. "md5": "24be1e958344bf3d9cb51cd1d647a3f9"
  7933. }
  7934. },
  7935. {
  7936. "location": {
  7937. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-kern-table.hh"
  7938. },
  7939. "hashes": {
  7940. "md5": "ad9dc6fa0fd2192ff7afc5e917c2e4ff"
  7941. }
  7942. },
  7943. {
  7944. "location": {
  7945. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-kern.hh"
  7946. },
  7947. "hashes": {
  7948. "md5": "9989c9bd9a9c9981fd17b46856e9e07c"
  7949. }
  7950. },
  7951. {
  7952. "location": {
  7953. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-common.hh"
  7954. },
  7955. "hashes": {
  7956. "md5": "6cfdd3e97f43fc4f974ce475360d1a08"
  7957. }
  7958. },
  7959. {
  7960. "location": {
  7961. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout.hh"
  7962. },
  7963. "hashes": {
  7964. "md5": "cb5219ebbbb85ab984dcbf4cd9a4eb90"
  7965. }
  7966. },
  7967. {
  7968. "location": {
  7969. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-ltag-table.hh"
  7970. },
  7971. "hashes": {
  7972. "md5": "c27577c1be7ae8e5c2e4078a088bbb55"
  7973. }
  7974. },
  7975. {
  7976. "location": {
  7977. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gpos-table.hh"
  7978. },
  7979. "hashes": {
  7980. "md5": "a83c26e3c40334e8e2720325577939f8"
  7981. }
  7982. },
  7983. {
  7984. "location": {
  7985. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/gpos.hh"
  7986. },
  7987. "hashes": {
  7988. "md5": "d4b62d1a551fb3fe3cf34ed1a0462c07"
  7989. }
  7990. },
  7991. {
  7992. "location": {
  7993. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/types.hh"
  7994. },
  7995. "hashes": {
  7996. "md5": "d9150daa543714505e8e44a73553b462"
  7997. }
  7998. },
  7999. {
  8000. "location": {
  8001. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/common/coverageformat1.hh"
  8002. },
  8003. "hashes": {
  8004. "md5": "0060329b676c1795856ba9f5e2d1b936"
  8005. }
  8006. },
  8007. {
  8008. "location": {
  8009. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/common/coverageformat2.hh"
  8010. },
  8011. "hashes": {
  8012. "md5": "12cd65d70c76032546471a73dd7fb290"
  8013. }
  8014. },
  8015. {
  8016. "location": {
  8017. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/common/rangerecord.hh"
  8018. },
  8019. "hashes": {
  8020. "md5": "d9493528366e8bd174afd80bbd4d2615"
  8021. }
  8022. },
  8023. {
  8024. "location": {
  8025. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gdef-table.hh"
  8026. },
  8027. "hashes": {
  8028. "md5": "5815ce664f62781de3eba8542be6b58e"
  8029. }
  8030. },
  8031. {
  8032. "location": {
  8033. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/common.hh"
  8034. },
  8035. "hashes": {
  8036. "md5": "17628a346a7d052b81a2c498adb3b67d"
  8037. }
  8038. },
  8039. {
  8040. "location": {
  8041. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/poslookup.hh"
  8042. },
  8043. "hashes": {
  8044. "md5": "422949158cc7e85a21d549434266007f"
  8045. }
  8046. },
  8047. {
  8048. "location": {
  8049. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/poslookupsubtable.hh"
  8050. },
  8051. "hashes": {
  8052. "md5": "fcc9167205a6a65bbac83418d57156c7"
  8053. }
  8054. },
  8055. {
  8056. "location": {
  8057. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/singleposformat1.hh"
  8058. },
  8059. "hashes": {
  8060. "md5": "410e7690608819f07be953b437bcd6b9"
  8061. }
  8062. },
  8063. {
  8064. "location": {
  8065. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/valueformat.hh"
  8066. },
  8067. "hashes": {
  8068. "md5": "1efb7fa3e4b8050b4232abc8fe5d9dea"
  8069. }
  8070. },
  8071. {
  8072. "location": {
  8073. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/singleposformat2.hh"
  8074. },
  8075. "hashes": {
  8076. "md5": "d15f5d00fb882f831093934905cd0e6c"
  8077. }
  8078. },
  8079. {
  8080. "location": {
  8081. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairpos.hh"
  8082. },
  8083. "hashes": {
  8084. "md5": "2b168dd217baa7531ff7df962f1de464"
  8085. }
  8086. },
  8087. {
  8088. "location": {
  8089. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairposformat1.hh"
  8090. },
  8091. "hashes": {
  8092. "md5": "a5bf42d1dfcf56f03aabcd20c854452d"
  8093. }
  8094. },
  8095. {
  8096. "location": {
  8097. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairset.hh"
  8098. },
  8099. "hashes": {
  8100. "md5": "621bed38dc3612201eeb81d8f17472af"
  8101. }
  8102. },
  8103. {
  8104. "location": {
  8105. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairvaluerecord.hh"
  8106. },
  8107. "hashes": {
  8108. "md5": "1db7c32f0aa712159ce960817452c4ec"
  8109. }
  8110. },
  8111. {
  8112. "location": {
  8113. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairposformat2.hh"
  8114. },
  8115. "hashes": {
  8116. "md5": "e8b43ff7379aa996d3c8fc7ff4e750ff"
  8117. }
  8118. },
  8119. {
  8120. "location": {
  8121. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/cursivepos.hh"
  8122. },
  8123. "hashes": {
  8124. "md5": "5878fa64b4a16f661b99970d7896a31b"
  8125. }
  8126. },
  8127. {
  8128. "location": {
  8129. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/cursiveposformat1.hh"
  8130. },
  8131. "hashes": {
  8132. "md5": "2473b3cb163d3c595af2d5575903d328"
  8133. }
  8134. },
  8135. {
  8136. "location": {
  8137. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchor.hh"
  8138. },
  8139. "hashes": {
  8140. "md5": "e8f1a4cb81e9ea1e529652071687f644"
  8141. }
  8142. },
  8143. {
  8144. "location": {
  8145. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchorformat1.hh"
  8146. },
  8147. "hashes": {
  8148. "md5": "f6a4117ec968bf72a621be6229b50521"
  8149. }
  8150. },
  8151. {
  8152. "location": {
  8153. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchorformat2.hh"
  8154. },
  8155. "hashes": {
  8156. "md5": "9af0cd569f8f909ce929d90c8f4f7e59"
  8157. }
  8158. },
  8159. {
  8160. "location": {
  8161. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchorformat3.hh"
  8162. },
  8163. "hashes": {
  8164. "md5": "71dac01f375122bc65573a515e01f1c3"
  8165. }
  8166. },
  8167. {
  8168. "location": {
  8169. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markbasepos.hh"
  8170. },
  8171. "hashes": {
  8172. "md5": "ac71c453af288b5098c0610f1cc0518d"
  8173. }
  8174. },
  8175. {
  8176. "location": {
  8177. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markbaseposformat1.hh"
  8178. },
  8179. "hashes": {
  8180. "md5": "fdc3fa6c813e1c6fd49b4b8d15f8e653"
  8181. }
  8182. },
  8183. {
  8184. "location": {
  8185. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markarray.hh"
  8186. },
  8187. "hashes": {
  8188. "md5": "dae0c28a3a8953a896c0ae86dca25c10"
  8189. }
  8190. },
  8191. {
  8192. "location": {
  8193. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchormatrix.hh"
  8194. },
  8195. "hashes": {
  8196. "md5": "94b230d7853e02678ec212a5739b8b1a"
  8197. }
  8198. },
  8199. {
  8200. "location": {
  8201. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markrecord.hh"
  8202. },
  8203. "hashes": {
  8204. "md5": "2f5e03b606f7e74bf137bf443715d6c8"
  8205. }
  8206. },
  8207. {
  8208. "location": {
  8209. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markligpos.hh"
  8210. },
  8211. "hashes": {
  8212. "md5": "8b0233dd70ef2dde74f23ff63a748f0a"
  8213. }
  8214. },
  8215. {
  8216. "location": {
  8217. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markligposformat1.hh"
  8218. },
  8219. "hashes": {
  8220. "md5": "1f2ad27761616fbac256a5eab34eff05"
  8221. }
  8222. },
  8223. {
  8224. "location": {
  8225. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/ligaturearray.hh"
  8226. },
  8227. "hashes": {
  8228. "md5": "c56ecf9dafca0a6ad7602e5263e7c6ec"
  8229. }
  8230. },
  8231. {
  8232. "location": {
  8233. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markmarkpos.hh"
  8234. },
  8235. "hashes": {
  8236. "md5": "c76c51426e3661ad286a365f6b08e33c"
  8237. }
  8238. },
  8239. {
  8240. "location": {
  8241. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markmarkposformat1.hh"
  8242. },
  8243. "hashes": {
  8244. "md5": "ff0f93b16f9c93a55aa720631a93670d"
  8245. }
  8246. },
  8247. {
  8248. "location": {
  8249. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/contextpos.hh"
  8250. },
  8251. "hashes": {
  8252. "md5": "5534d1bedef5e8c8fb4e20583df1af19"
  8253. }
  8254. },
  8255. {
  8256. "location": {
  8257. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/chaincontextpos.hh"
  8258. },
  8259. "hashes": {
  8260. "md5": "65308c499cd022980d02de9b707bd6ef"
  8261. }
  8262. },
  8263. {
  8264. "location": {
  8265. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/extensionpos.hh"
  8266. },
  8267. "hashes": {
  8268. "md5": "e5f7e9a60210cb910563b08145a9d2d1"
  8269. }
  8270. },
  8271. {
  8272. "location": {
  8273. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-ankr-table.hh"
  8274. },
  8275. "hashes": {
  8276. "md5": "5b201c8df8925a81f9c496033847c7ed"
  8277. }
  8278. },
  8279. {
  8280. "location": {
  8281. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsub-table.hh"
  8282. },
  8283. "hashes": {
  8284. "md5": "97b8a6695545a4525de9161c570153c5"
  8285. }
  8286. },
  8287. {
  8288. "location": {
  8289. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/gsub.hh"
  8290. },
  8291. "hashes": {
  8292. "md5": "395ca6f0cf648e5f395c5a2aa9eb51d0"
  8293. }
  8294. },
  8295. {
  8296. "location": {
  8297. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/common.hh"
  8298. },
  8299. "hashes": {
  8300. "md5": "f920e78392709d5572a288a1324c16d4"
  8301. }
  8302. },
  8303. {
  8304. "location": {
  8305. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/substlookup.hh"
  8306. },
  8307. "hashes": {
  8308. "md5": "4aa52f43b36b1dc495631d4bc4a190bb"
  8309. }
  8310. },
  8311. {
  8312. "location": {
  8313. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/substlookupsubtable.hh"
  8314. },
  8315. "hashes": {
  8316. "md5": "e629342fa234daadbdeac480560837a9"
  8317. }
  8318. },
  8319. {
  8320. "location": {
  8321. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/singlesubst.hh"
  8322. },
  8323. "hashes": {
  8324. "md5": "ef6312cd1b9ea744af16d8929aedef56"
  8325. }
  8326. },
  8327. {
  8328. "location": {
  8329. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/singlesubstformat1.hh"
  8330. },
  8331. "hashes": {
  8332. "md5": "b188b2c15a9430bf325448eb8be1abde"
  8333. }
  8334. },
  8335. {
  8336. "location": {
  8337. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/singlesubstformat2.hh"
  8338. },
  8339. "hashes": {
  8340. "md5": "cf74acfcc46790d6440302e11b7b9e5d"
  8341. }
  8342. },
  8343. {
  8344. "location": {
  8345. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/multiplesubst.hh"
  8346. },
  8347. "hashes": {
  8348. "md5": "17c8783ce51ade55e28c4e0310b1fe31"
  8349. }
  8350. },
  8351. {
  8352. "location": {
  8353. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/multiplesubstformat1.hh"
  8354. },
  8355. "hashes": {
  8356. "md5": "fe73b5c2ff67dc270420e797b437956c"
  8357. }
  8358. },
  8359. {
  8360. "location": {
  8361. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/sequence.hh"
  8362. },
  8363. "hashes": {
  8364. "md5": "30c87c9f161d576b4763e6f8882c1fa4"
  8365. }
  8366. },
  8367. {
  8368. "location": {
  8369. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/alternatesubst.hh"
  8370. },
  8371. "hashes": {
  8372. "md5": "e17f7e04e117267b34be1d5222506fb5"
  8373. }
  8374. },
  8375. {
  8376. "location": {
  8377. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/alternatesubstformat1.hh"
  8378. },
  8379. "hashes": {
  8380. "md5": "38cdb3e6aad2fed8c0edbe5ea0ece73c"
  8381. }
  8382. },
  8383. {
  8384. "location": {
  8385. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/alternateset.hh"
  8386. },
  8387. "hashes": {
  8388. "md5": "d815246a84efade2060f4eb2eb02a057"
  8389. }
  8390. },
  8391. {
  8392. "location": {
  8393. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligaturesubst.hh"
  8394. },
  8395. "hashes": {
  8396. "md5": "19b1e32e7b0df4f41d4dfc05b6e040d7"
  8397. }
  8398. },
  8399. {
  8400. "location": {
  8401. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligaturesubstformat1.hh"
  8402. },
  8403. "hashes": {
  8404. "md5": "9a3fc168a60717282869fb7694e14018"
  8405. }
  8406. },
  8407. {
  8408. "location": {
  8409. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligatureset.hh"
  8410. },
  8411. "hashes": {
  8412. "md5": "3862040dbf63b9b9cae6dc9de0d0d273"
  8413. }
  8414. },
  8415. {
  8416. "location": {
  8417. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligature.hh"
  8418. },
  8419. "hashes": {
  8420. "md5": "4ec47174be25c39263a4d09d25e14279"
  8421. }
  8422. },
  8423. {
  8424. "location": {
  8425. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/contextsubst.hh"
  8426. },
  8427. "hashes": {
  8428. "md5": "eb2317eca7cb6778e3b2de1a1d0bd6b3"
  8429. }
  8430. },
  8431. {
  8432. "location": {
  8433. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/chaincontextsubst.hh"
  8434. },
  8435. "hashes": {
  8436. "md5": "8c58aa9df88257cf7397be9642c47dd1"
  8437. }
  8438. },
  8439. {
  8440. "location": {
  8441. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/extensionsubst.hh"
  8442. },
  8443. "hashes": {
  8444. "md5": "d79feb78281f37556ced7d8a0090af89"
  8445. }
  8446. },
  8447. {
  8448. "location": {
  8449. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/reversechainsinglesubst.hh"
  8450. },
  8451. "hashes": {
  8452. "md5": "c5c3cb48abd8c921db7d91beec15b13f"
  8453. }
  8454. },
  8455. {
  8456. "location": {
  8457. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-base-table.hh"
  8458. },
  8459. "hashes": {
  8460. "md5": "b81d054c4468a9d3560ccabe2763a5ed"
  8461. }
  8462. },
  8463. {
  8464. "location": {
  8465. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-jstf-table.hh"
  8466. },
  8467. "hashes": {
  8468. "md5": "6f8141f832882a61019883e21447eef1"
  8469. }
  8470. },
  8471. {
  8472. "location": {
  8473. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name-table.hh"
  8474. },
  8475. "hashes": {
  8476. "md5": "063a246d87c52424e99fd5e6f68f63b5"
  8477. }
  8478. },
  8479. {
  8480. "location": {
  8481. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name-language.hh"
  8482. },
  8483. "hashes": {
  8484. "md5": "d6754b18bdb5117e924b19efaf9c3c81"
  8485. }
  8486. },
  8487. {
  8488. "location": {
  8489. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-utf.hh"
  8490. },
  8491. "hashes": {
  8492. "md5": "01785426245d29d0ca41c5d79a8a0605"
  8493. }
  8494. },
  8495. {
  8496. "location": {
  8497. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-unicode-ranges.hh"
  8498. },
  8499. "hashes": {
  8500. "md5": "bb199773d41e991ebc92b83667f1bdc8"
  8501. }
  8502. },
  8503. {
  8504. "location": {
  8505. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-morx-table.hh"
  8506. },
  8507. "hashes": {
  8508. "md5": "7765ca3cfb4a2cff390ac3678039bd4d"
  8509. }
  8510. },
  8511. {
  8512. "location": {
  8513. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-opbd-table.hh"
  8514. },
  8515. "hashes": {
  8516. "md5": "c4a6c8393ead4b85acbfa5c76d351f17"
  8517. }
  8518. },
  8519. {
  8520. "location": {
  8521. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  8522. },
  8523. "roles": [
  8524. "resultFile"
  8525. ],
  8526. "hashes": {
  8527. "md5": "f1a3e58420d37bb362414d038178d961"
  8528. }
  8529. },
  8530. {
  8531. "location": {
  8532. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-hvar-table.hh"
  8533. },
  8534. "roles": [
  8535. "resultFile"
  8536. ],
  8537. "hashes": {
  8538. "md5": "6612001c0653bf856cb55340bd48bfcb"
  8539. }
  8540. },
  8541. {
  8542. "location": {
  8543. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-gvar-table.hh"
  8544. },
  8545. "roles": [
  8546. "resultFile"
  8547. ],
  8548. "hashes": {
  8549. "md5": "90f4e4cbdc7d9f83ce9d5ae67c4e91fe"
  8550. }
  8551. },
  8552. {
  8553. "location": {
  8554. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cff-interp-common.hh"
  8555. },
  8556. "roles": [
  8557. "resultFile"
  8558. ],
  8559. "hashes": {
  8560. "md5": "a268e83a0a60cb2363a3a640376b6e66"
  8561. }
  8562. },
  8563. {
  8564. "location": {
  8565. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cff1-table.hh"
  8566. },
  8567. "roles": [
  8568. "resultFile"
  8569. ],
  8570. "hashes": {
  8571. "md5": "17fd8abb660673c0eba2a905a9521acb"
  8572. }
  8573. },
  8574. {
  8575. "location": {
  8576. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cff-interp-dict-common.hh"
  8577. },
  8578. "roles": [
  8579. "resultFile"
  8580. ],
  8581. "hashes": {
  8582. "md5": "8e3ae99bfdc956626cbcddc844a31b7d"
  8583. }
  8584. },
  8585. {
  8586. "location": {
  8587. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-vorg-table.hh"
  8588. },
  8589. "roles": [
  8590. "resultFile"
  8591. ],
  8592. "hashes": {
  8593. "md5": "a86cdcd103e8757fb6c149fe0fe490b4"
  8594. }
  8595. },
  8596. {
  8597. "location": {
  8598. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  8599. },
  8600. "roles": [
  8601. "resultFile"
  8602. ],
  8603. "hashes": {
  8604. "md5": "a35f365bb95cd123e3ed3e5baea91a57"
  8605. }
  8606. },
  8607. {
  8608. "location": {
  8609. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cff2-table.hh"
  8610. },
  8611. "roles": [
  8612. "resultFile"
  8613. ],
  8614. "hashes": {
  8615. "md5": "0552b2fef297217b3c69602d336080b2"
  8616. }
  8617. },
  8618. {
  8619. "location": {
  8620. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/glyf/SubsetGlyph.hh"
  8621. },
  8622. "roles": [
  8623. "resultFile"
  8624. ],
  8625. "hashes": {
  8626. "md5": "fd92884fd721f0b5aa99e3348324eb96"
  8627. }
  8628. },
  8629. {
  8630. "location": {
  8631. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-font.cc"
  8632. },
  8633. "roles": [
  8634. "analysisTarget"
  8635. ],
  8636. "hashes": {
  8637. "md5": "ab59a5fdd7eab21d5b55d018f7b1904e"
  8638. }
  8639. },
  8640. {
  8641. "location": {
  8642. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cache.hh"
  8643. },
  8644. "hashes": {
  8645. "md5": "dfb8b0b8c418555ba20a66a4da1dfd6a"
  8646. }
  8647. },
  8648. {
  8649. "location": {
  8650. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shaper-arabic-pua.hh"
  8651. },
  8652. "hashes": {
  8653. "md5": "61a03b0432b7132ee103be6efd0a752b"
  8654. }
  8655. },
  8656. {
  8657. "location": {
  8658. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-glyf-table.hh"
  8659. },
  8660. "hashes": {
  8661. "md5": "0ce8149cb08a4da4e16a1efa87792854"
  8662. }
  8663. },
  8664. {
  8665. "location": {
  8666. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/glyf.hh"
  8667. },
  8668. "hashes": {
  8669. "md5": "a8152e2c0f09f2802dac58810d93a9ed"
  8670. }
  8671. },
  8672. {
  8673. "location": {
  8674. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-head-table.hh"
  8675. },
  8676. "hashes": {
  8677. "md5": "6950118b7ee0346a3b35ef08fe813b2c"
  8678. }
  8679. },
  8680. {
  8681. "location": {
  8682. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-hmtx-table.hh"
  8683. },
  8684. "hashes": {
  8685. "md5": "3cdb28561c64fe97dca574cc68efa7c6"
  8686. }
  8687. },
  8688. {
  8689. "location": {
  8690. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-maxp-table.hh"
  8691. },
  8692. "hashes": {
  8693. "md5": "c214347e225bb87a4aa099581b3d387a"
  8694. }
  8695. },
  8696. {
  8697. "location": {
  8698. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-hhea-table.hh"
  8699. },
  8700. "hashes": {
  8701. "md5": "c0d91d4a23198c7ad113b3742f76c8d9"
  8702. }
  8703. },
  8704. {
  8705. "location": {
  8706. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-var-common.hh"
  8707. },
  8708. "hashes": {
  8709. "md5": "b9fbb65d92cbab00b165433a2422a2a9"
  8710. }
  8711. },
  8712. {
  8713. "location": {
  8714. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-metrics.hh"
  8715. },
  8716. "hashes": {
  8717. "md5": "52f6741be90dee0999ac25ab5395d24d"
  8718. }
  8719. },
  8720. {
  8721. "location": {
  8722. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-draw.hh"
  8723. },
  8724. "hashes": {
  8725. "md5": "e0d061769f570f511f1c2df116dcd392"
  8726. }
  8727. },
  8728. {
  8729. "location": {
  8730. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/glyf-helpers.hh"
  8731. },
  8732. "hashes": {
  8733. "md5": "86d17f27c44498a6c45dbcb7bed40136"
  8734. }
  8735. },
  8736. {
  8737. "location": {
  8738. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/loca.hh"
  8739. },
  8740. "hashes": {
  8741. "md5": "4fc78848f50dde25c1d1960e3d3befab"
  8742. }
  8743. },
  8744. {
  8745. "location": {
  8746. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/glyph.hh"
  8747. },
  8748. "hashes": {
  8749. "md5": "2c6cd75a12b56d6c99d1d8a24ffc5905"
  8750. }
  8751. },
  8752. {
  8753. "location": {
  8754. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/glyphheader.hh"
  8755. },
  8756. "hashes": {
  8757. "md5": "f79faa523fb6d727d36b527e00320950"
  8758. }
  8759. },
  8760. {
  8761. "location": {
  8762. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/simpleglyph.hh"
  8763. },
  8764. "hashes": {
  8765. "md5": "6000a2847c2d057966114b8b9d7aa9d3"
  8766. }
  8767. },
  8768. {
  8769. "location": {
  8770. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/compositeglyph.hh"
  8771. },
  8772. "hashes": {
  8773. "md5": "dc67c6a3e8ca84f60aad647f9558d388"
  8774. }
  8775. },
  8776. {
  8777. "location": {
  8778. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/composite-iter.hh"
  8779. },
  8780. "hashes": {
  8781. "md5": "fa2be569b044cbf5a7cd24e3f60d5b05"
  8782. }
  8783. },
  8784. {
  8785. "location": {
  8786. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/varcompositeglyph.hh"
  8787. },
  8788. "hashes": {
  8789. "md5": "2afc28a41535950edf795446f91cd6d2"
  8790. }
  8791. },
  8792. {
  8793. "location": {
  8794. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/coord-setter.hh"
  8795. },
  8796. "hashes": {
  8797. "md5": "deed7cc328e2aed7e3b5cae4dc23e6f7"
  8798. }
  8799. },
  8800. {
  8801. "location": {
  8802. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/path-builder.hh"
  8803. },
  8804. "hashes": {
  8805. "md5": "6f606de65d71a7629bf9c6ab8b121b9a"
  8806. }
  8807. },
  8808. {
  8809. "location": {
  8810. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-cff-common.hh"
  8811. },
  8812. "hashes": {
  8813. "md5": "f1901205a54fb90d0855711e3b254b32"
  8814. }
  8815. },
  8816. {
  8817. "location": {
  8818. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-cff1.hh"
  8819. },
  8820. "hashes": {
  8821. "md5": "dc623bd92d93d843b3ab8d58b980b35a"
  8822. }
  8823. },
  8824. {
  8825. "location": {
  8826. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-string-array.hh"
  8827. },
  8828. "hashes": {
  8829. "md5": "d1c6aa13c4490a050613a767b6649cab"
  8830. }
  8831. },
  8832. {
  8833. "location": {
  8834. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-cff1-std-str.hh"
  8835. },
  8836. "hashes": {
  8837. "md5": "ef327eb7cad0fdb6c7682cac03571e9c"
  8838. }
  8839. },
  8840. {
  8841. "location": {
  8842. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-cff2.hh"
  8843. },
  8844. "hashes": {
  8845. "md5": "708e3b5098dff49bf76bf34e128174f8"
  8846. }
  8847. },
  8848. {
  8849. "location": {
  8850. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-post-table.hh"
  8851. },
  8852. "hashes": {
  8853. "md5": "7f0236fd8b3080a60acffefe8ffdd213"
  8854. }
  8855. },
  8856. {
  8857. "location": {
  8858. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-post-macroman.hh"
  8859. },
  8860. "hashes": {
  8861. "md5": "29f6a8855bc2749c562fe1cf6cbd06ab"
  8862. }
  8863. },
  8864. {
  8865. "location": {
  8866. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-stat-table.hh"
  8867. },
  8868. "hashes": {
  8869. "md5": "c3bc6b494f5570161ce011956107e23d"
  8870. }
  8871. },
  8872. {
  8873. "location": {
  8874. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color-cbdt-table.hh"
  8875. },
  8876. "hashes": {
  8877. "md5": "c311e5a96aa03e890cba864333f82a60"
  8878. }
  8879. },
  8880. {
  8881. "location": {
  8882. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color-sbix-table.hh"
  8883. },
  8884. "hashes": {
  8885. "md5": "b367abafb43f92761e83f5533f897931"
  8886. }
  8887. },
  8888. {
  8889. "location": {
  8890. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face.cc"
  8891. },
  8892. "roles": [
  8893. "analysisTarget"
  8894. ],
  8895. "hashes": {
  8896. "md5": "62d02eab3c35f1c2b6efcca6409f1fb8"
  8897. }
  8898. },
  8899. {
  8900. "location": {
  8901. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-meta-table.hh"
  8902. },
  8903. "hashes": {
  8904. "md5": "883849c7864da0c0299a24f0d2f35a8c"
  8905. }
  8906. },
  8907. {
  8908. "location": {
  8909. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color-svg-table.hh"
  8910. },
  8911. "hashes": {
  8912. "md5": "8db0b489cdfb4068396b0ce084e88a7e"
  8913. }
  8914. },
  8915. {
  8916. "location": {
  8917. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color.cc"
  8918. },
  8919. "roles": [
  8920. "analysisTarget"
  8921. ],
  8922. "hashes": {
  8923. "md5": "1d939e82bc22d2742985b2aab315e630"
  8924. }
  8925. },
  8926. {
  8927. "location": {
  8928. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color-cpal-table.hh"
  8929. },
  8930. "hashes": {
  8931. "md5": "59591cf3e1875f29dd2ec8d68fef83e9"
  8932. }
  8933. },
  8934. {
  8935. "location": {
  8936. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cff-interp-cs-common.hh"
  8937. },
  8938. "roles": [
  8939. "resultFile"
  8940. ],
  8941. "hashes": {
  8942. "md5": "acc742aea03a716bd5c05aa44f04f49a"
  8943. }
  8944. },
  8945. {
  8946. "location": {
  8947. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-cff2-table.cc"
  8948. },
  8949. "roles": [
  8950. "analysisTarget"
  8951. ],
  8952. "hashes": {
  8953. "md5": "fa9dfc4d71d217d447ce731d51690c77"
  8954. }
  8955. },
  8956. {
  8957. "location": {
  8958. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cff2-interp-cs.hh"
  8959. },
  8960. "hashes": {
  8961. "md5": "cc517aa26f758850535236f9efb1cdea"
  8962. }
  8963. },
  8964. {
  8965. "location": {
  8966. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-cff1-table.cc"
  8967. },
  8968. "roles": [
  8969. "analysisTarget"
  8970. ],
  8971. "hashes": {
  8972. "md5": "3a39a0d10610ef4406f650e44400cb00"
  8973. }
  8974. },
  8975. {
  8976. "location": {
  8977. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cff1-interp-cs.hh"
  8978. },
  8979. "hashes": {
  8980. "md5": "29b823b6e2fbee5d00bd7004f34a1c80"
  8981. }
  8982. },
  8983. {
  8984. "location": {
  8985. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/platform/win32/hb-number-parser.hh"
  8986. },
  8987. "roles": [
  8988. "resultFile"
  8989. ]
  8990. },
  8991. {
  8992. "location": {
  8993. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-number.cc"
  8994. },
  8995. "roles": [
  8996. "analysisTarget"
  8997. ],
  8998. "hashes": {
  8999. "md5": "5feaf17a4e1ef0bf8e004d0513c61cdf"
  9000. }
  9001. },
  9002. {
  9003. "location": {
  9004. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-number-parser.hh"
  9005. },
  9006. "hashes": {
  9007. "md5": "23e39013777c2eaa7be2e21e8faa337d"
  9008. }
  9009. },
  9010. {
  9011. "location": {
  9012. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-map.cc"
  9013. },
  9014. "roles": [
  9015. "analysisTarget"
  9016. ],
  9017. "hashes": {
  9018. "md5": "6d08631134cc4af1e73dc2d51bd90cbe"
  9019. }
  9020. },
  9021. {
  9022. "location": {
  9023. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ft.cc"
  9024. },
  9025. "roles": [
  9026. "analysisTarget",
  9027. "resultFile"
  9028. ],
  9029. "hashes": {
  9030. "md5": "ad53fa0c3b9c13884006b8853245ae66"
  9031. }
  9032. },
  9033. {
  9034. "location": {
  9035. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ft.h"
  9036. },
  9037. "hashes": {
  9038. "md5": "bd15dd5644cfd8d486ce2fd3717324bd"
  9039. }
  9040. },
  9041. {
  9042. "location": {
  9043. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/ft2build.h"
  9044. },
  9045. "hashes": {
  9046. "md5": "284e0b8a11a5a3c29ef0b1d64b0b7f8d"
  9047. }
  9048. },
  9049. {
  9050. "location": {
  9051. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/ftheader.h"
  9052. },
  9053. "hashes": {
  9054. "md5": "9e68c37c8247a4d054ea236345b07239"
  9055. }
  9056. },
  9057. {
  9058. "location": {
  9059. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/freetype.h"
  9060. },
  9061. "hashes": {
  9062. "md5": "5336a07c6ff75a9cc62c2c1dcd7f3b06"
  9063. }
  9064. },
  9065. {
  9066. "location": {
  9067. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/ftconfig.h"
  9068. },
  9069. "hashes": {
  9070. "md5": "51741f5954c2b27ec5140fb964a80e1b"
  9071. }
  9072. },
  9073. {
  9074. "location": {
  9075. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/ftoption.h"
  9076. },
  9077. "hashes": {
  9078. "md5": "b15c2030b96ba6b7a925449939bf7abe"
  9079. }
  9080. },
  9081. {
  9082. "location": {
  9083. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/ftstdlib.h"
  9084. },
  9085. "hashes": {
  9086. "md5": "c6860da9fbb76d36140842f8cf381d14"
  9087. }
  9088. },
  9089. {
  9090. "location": {
  9091. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/integer-types.h"
  9092. },
  9093. "hashes": {
  9094. "md5": "23ffebefa73cb6fd68cb3101f7fb0412"
  9095. }
  9096. },
  9097. {
  9098. "location": {
  9099. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/public-macros.h"
  9100. },
  9101. "hashes": {
  9102. "md5": "7062a18c381185e4f2f1add27e165d2c"
  9103. }
  9104. },
  9105. {
  9106. "location": {
  9107. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/mac-support.h"
  9108. },
  9109. "hashes": {
  9110. "md5": "f18d33b644aaaab7cfeadac743e2e87b"
  9111. }
  9112. },
  9113. {
  9114. "location": {
  9115. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/fttypes.h"
  9116. },
  9117. "hashes": {
  9118. "md5": "72da99326e2ca0a7443194ddc7ed542b"
  9119. }
  9120. },
  9121. {
  9122. "location": {
  9123. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftsystem.h"
  9124. },
  9125. "hashes": {
  9126. "md5": "a85962fe4cd7992cb5c71d2dc6200ee7"
  9127. }
  9128. },
  9129. {
  9130. "location": {
  9131. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftimage.h"
  9132. },
  9133. "hashes": {
  9134. "md5": "47e1aa58a30adf1427d279aeca994a54"
  9135. }
  9136. },
  9137. {
  9138. "location": {
  9139. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/fterrors.h"
  9140. },
  9141. "hashes": {
  9142. "md5": "c02117103079e500862b09a44cda90c7"
  9143. }
  9144. },
  9145. {
  9146. "location": {
  9147. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftmoderr.h"
  9148. },
  9149. "hashes": {
  9150. "md5": "5125dd326d895b87879ebc44dd6cf197"
  9151. }
  9152. },
  9153. {
  9154. "location": {
  9155. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/fterrdef.h"
  9156. },
  9157. "hashes": {
  9158. "md5": "83787d76c6ac1ea1da29bf7da274d1e1"
  9159. }
  9160. },
  9161. {
  9162. "location": {
  9163. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftadvanc.h"
  9164. },
  9165. "hashes": {
  9166. "md5": "987eb8aed95120729f9cdd03a4e4f3d7"
  9167. }
  9168. },
  9169. {
  9170. "location": {
  9171. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftmm.h"
  9172. },
  9173. "hashes": {
  9174. "md5": "6842f11da835f599d4eeef49313ec37b"
  9175. }
  9176. },
  9177. {
  9178. "location": {
  9179. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftoutln.h"
  9180. },
  9181. "hashes": {
  9182. "md5": "ee9bf7d84da77d27ac433656b1ce38d2"
  9183. }
  9184. },
  9185. {
  9186. "location": {
  9187. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/tttables.h"
  9188. },
  9189. "hashes": {
  9190. "md5": "3412886fa7d2ec2cc38fbc3666321cbc"
  9191. }
  9192. },
  9193. {
  9194. "location": {
  9195. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-fvar-table.hh"
  9196. },
  9197. "roles": [
  9198. "resultFile"
  9199. ],
  9200. "hashes": {
  9201. "md5": "9761ccb5bc0516cd0661b9340a046c8f"
  9202. }
  9203. },
  9204. {
  9205. "location": {
  9206. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.cc"
  9207. },
  9208. "roles": [
  9209. "analysisTarget"
  9210. ],
  9211. "hashes": {
  9212. "md5": "c09c794076f729a32a0c91ea25ddc652"
  9213. }
  9214. },
  9215. {
  9216. "location": {
  9217. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-var-avar-table.hh"
  9218. },
  9219. "hashes": {
  9220. "md5": "f712314e1fabba75510710bd6fc76a3d"
  9221. }
  9222. },
  9223. {
  9224. "location": {
  9225. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-fallback-shape.cc"
  9226. },
  9227. "roles": [
  9228. "analysisTarget"
  9229. ],
  9230. "hashes": {
  9231. "md5": "9c7630c26e3e4806e166564d871fdcfd"
  9232. }
  9233. },
  9234. {
  9235. "location": {
  9236. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper-impl.hh"
  9237. },
  9238. "hashes": {
  9239. "md5": "6af3673be036e82a1c5fc0cf5165f0db"
  9240. }
  9241. },
  9242. {
  9243. "location": {
  9244. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.cc"
  9245. },
  9246. "roles": [
  9247. "analysisTarget"
  9248. ],
  9249. "hashes": {
  9250. "md5": "ffc7e1358b4f63cd72db38bae7d3f602"
  9251. }
  9252. },
  9253. {
  9254. "location": {
  9255. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-open-file.hh"
  9256. },
  9257. "hashes": {
  9258. "md5": "75d56b62a5fbb9926748b5a857b9d800"
  9259. }
  9260. },
  9261. {
  9262. "location": {
  9263. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-common.cc"
  9264. },
  9265. "roles": [
  9266. "analysisTarget"
  9267. ],
  9268. "hashes": {
  9269. "md5": "dc75ea803dde233ac7ea6d111ffc8a3a"
  9270. }
  9271. },
  9272. {
  9273. "location": {
  9274. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-static.cc"
  9275. },
  9276. "hashes": {
  9277. "md5": "ee70d8b97dbfa70684f7a24f40c5d861"
  9278. }
  9279. },
  9280. {
  9281. "location": {
  9282. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-feat-table.hh"
  9283. },
  9284. "hashes": {
  9285. "md5": "9e7d0f3ef7eff5107eec54c07247e4ae"
  9286. }
  9287. },
  9288. {
  9289. "location": {
  9290. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name-language-static.hh"
  9291. },
  9292. "hashes": {
  9293. "md5": "2b26fde5d83b4c8794bc1ecc546feea0"
  9294. }
  9295. }
  9296. ]
  9297. }
  9298. ]
  9299. }