ccbord.nativecodeanalysis.sarif 289 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337
  1. {
  2. "version": "2.1.0",
  3. "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
  4. "runs": [
  5. {
  6. "results": [
  7. {
  8. "ruleId": "C6001",
  9. "message": {
  10. "text": "Nicht initialisierter Speicher \"xh\" wird verwendet."
  11. },
  12. "locations": [
  13. {
  14. "physicalLocation": {
  15. "artifactLocation": {
  16. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  17. },
  18. "region": {
  19. "startLine": 720,
  20. "startColumn": 18,
  21. "endLine": 720,
  22. "endColumn": 18
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "pixGetCCBorders",
  28. "kind": "function"
  29. }
  30. ]
  31. }
  32. ],
  33. "codeFlows": [
  34. {
  35. "threadFlows": [
  36. {
  37. "locations": [
  38. {
  39. "location": {
  40. "physicalLocation": {
  41. "artifactLocation": {
  42. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  43. },
  44. "region": {
  45. "startLine": 647,
  46. "startColumn": 11
  47. }
  48. }
  49. },
  50. "importance": "unimportant"
  51. },
  52. {
  53. "location": {
  54. "physicalLocation": {
  55. "artifactLocation": {
  56. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  57. },
  58. "region": {
  59. "startLine": 647,
  60. "startColumn": 20
  61. }
  62. }
  63. },
  64. "importance": "unimportant"
  65. },
  66. {
  67. "location": {
  68. "physicalLocation": {
  69. "artifactLocation": {
  70. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  71. },
  72. "region": {
  73. "startLine": 647,
  74. "startColumn": 23
  75. }
  76. }
  77. },
  78. "importance": "unimportant"
  79. },
  80. {
  81. "location": {
  82. "physicalLocation": {
  83. "artifactLocation": {
  84. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  85. },
  86. "region": {
  87. "startLine": 647,
  88. "startColumn": 26
  89. }
  90. },
  91. "message": {
  92. "text": "\"xh\" ist nicht initialisiert"
  93. }
  94. },
  95. "kinds": [
  96. "declaration"
  97. ],
  98. "importance": "essential"
  99. },
  100. {
  101. "location": {
  102. "physicalLocation": {
  103. "artifactLocation": {
  104. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  105. },
  106. "region": {
  107. "startLine": 647,
  108. "startColumn": 30
  109. }
  110. }
  111. },
  112. "importance": "unimportant"
  113. },
  114. {
  115. "location": {
  116. "physicalLocation": {
  117. "artifactLocation": {
  118. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  119. },
  120. "region": {
  121. "startLine": 647,
  122. "startColumn": 33
  123. }
  124. }
  125. },
  126. "importance": "unimportant"
  127. },
  128. {
  129. "location": {
  130. "physicalLocation": {
  131. "artifactLocation": {
  132. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  133. },
  134. "region": {
  135. "startLine": 648,
  136. "startColumn": 11
  137. }
  138. }
  139. },
  140. "importance": "unimportant"
  141. },
  142. {
  143. "location": {
  144. "physicalLocation": {
  145. "artifactLocation": {
  146. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  147. },
  148. "region": {
  149. "startLine": 648,
  150. "startColumn": 15
  151. }
  152. }
  153. },
  154. "importance": "unimportant"
  155. },
  156. {
  157. "location": {
  158. "physicalLocation": {
  159. "artifactLocation": {
  160. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  161. },
  162. "region": {
  163. "startLine": 649,
  164. "startColumn": 11
  165. }
  166. }
  167. },
  168. "importance": "unimportant"
  169. },
  170. {
  171. "location": {
  172. "physicalLocation": {
  173. "artifactLocation": {
  174. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  175. },
  176. "region": {
  177. "startLine": 650,
  178. "startColumn": 11
  179. }
  180. }
  181. },
  182. "importance": "unimportant"
  183. },
  184. {
  185. "location": {
  186. "physicalLocation": {
  187. "artifactLocation": {
  188. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  189. },
  190. "region": {
  191. "startLine": 650,
  192. "startColumn": 18
  193. }
  194. }
  195. },
  196. "importance": "unimportant"
  197. },
  198. {
  199. "location": {
  200. "physicalLocation": {
  201. "artifactLocation": {
  202. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  203. },
  204. "region": {
  205. "startLine": 651,
  206. "startColumn": 11
  207. }
  208. }
  209. },
  210. "importance": "unimportant"
  211. },
  212. {
  213. "location": {
  214. "physicalLocation": {
  215. "artifactLocation": {
  216. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  217. },
  218. "region": {
  219. "startLine": 652,
  220. "startColumn": 11
  221. }
  222. }
  223. },
  224. "importance": "unimportant"
  225. },
  226. {
  227. "location": {
  228. "physicalLocation": {
  229. "artifactLocation": {
  230. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  231. },
  232. "region": {
  233. "startLine": 653,
  234. "startColumn": 11
  235. }
  236. }
  237. },
  238. "importance": "unimportant"
  239. },
  240. {
  241. "location": {
  242. "physicalLocation": {
  243. "artifactLocation": {
  244. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  245. },
  246. "region": {
  247. "startLine": 654,
  248. "startColumn": 11
  249. }
  250. }
  251. },
  252. "importance": "unimportant"
  253. },
  254. {
  255. "location": {
  256. "physicalLocation": {
  257. "artifactLocation": {
  258. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  259. },
  260. "region": {
  261. "startLine": 655,
  262. "startColumn": 11
  263. }
  264. }
  265. },
  266. "importance": "unimportant"
  267. },
  268. {
  269. "location": {
  270. "physicalLocation": {
  271. "artifactLocation": {
  272. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  273. },
  274. "region": {
  275. "startLine": 657,
  276. "startColumn": 9
  277. }
  278. },
  279. "message": {
  280. "text": "Diese Verzweigung überspringen (Annahme: \"!pixs\" ist false)"
  281. }
  282. },
  283. "kinds": [
  284. "branch"
  285. ],
  286. "importance": "important"
  287. },
  288. {
  289. "location": {
  290. "physicalLocation": {
  291. "artifactLocation": {
  292. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  293. },
  294. "region": {
  295. "startLine": 659,
  296. "startColumn": 9
  297. }
  298. },
  299. "message": {
  300. "text": "Diese Verzweigung überspringen (Annahme: \"!box\" ist false)"
  301. }
  302. },
  303. "kinds": [
  304. "branch"
  305. ],
  306. "importance": "important"
  307. },
  308. {
  309. "location": {
  310. "physicalLocation": {
  311. "artifactLocation": {
  312. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  313. },
  314. "region": {
  315. "startLine": 661,
  316. "startColumn": 27
  317. }
  318. },
  319. "message": {
  320. "text": "Diese Verzweigung überspringen (Annahme: \"pixGetDepth(pixs)!=1\" ist false)"
  321. }
  322. },
  323. "kinds": [
  324. "branch"
  325. ],
  326. "importance": "important"
  327. },
  328. {
  329. "location": {
  330. "physicalLocation": {
  331. "artifactLocation": {
  332. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  333. },
  334. "region": {
  335. "startLine": 664,
  336. "startColumn": 12
  337. }
  338. }
  339. },
  340. "importance": "unimportant"
  341. },
  342. {
  343. "location": {
  344. "physicalLocation": {
  345. "artifactLocation": {
  346. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  347. },
  348. "region": {
  349. "startLine": 665,
  350. "startColumn": 9
  351. }
  352. },
  353. "message": {
  354. "text": "Diese Verzweigung überspringen (Annahme: \"allzero\" ist false)"
  355. }
  356. },
  357. "kinds": [
  358. "branch"
  359. ],
  360. "importance": "important"
  361. },
  362. {
  363. "location": {
  364. "physicalLocation": {
  365. "artifactLocation": {
  366. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  367. },
  368. "region": {
  369. "startLine": 668,
  370. "startColumn": 33
  371. }
  372. },
  373. "message": {
  374. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  375. }
  376. },
  377. "kinds": [
  378. "branch"
  379. ],
  380. "importance": "important"
  381. },
  382. {
  383. "location": {
  384. "physicalLocation": {
  385. "artifactLocation": {
  386. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  387. },
  388. "region": {
  389. "startLine": 672,
  390. "startColumn": 22
  391. }
  392. }
  393. },
  394. "importance": "unimportant"
  395. },
  396. {
  397. "location": {
  398. "physicalLocation": {
  399. "artifactLocation": {
  400. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  401. },
  402. "region": {
  403. "startLine": 675,
  404. "startColumn": 45
  405. }
  406. },
  407. "message": {
  408. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  409. }
  410. },
  411. "kinds": [
  412. "branch"
  413. ],
  414. "importance": "important"
  415. },
  416. {
  417. "location": {
  418. "physicalLocation": {
  419. "artifactLocation": {
  420. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  421. },
  422. "region": {
  423. "startLine": 679,
  424. "startColumn": 12
  425. }
  426. }
  427. },
  428. "importance": "unimportant"
  429. },
  430. {
  431. "location": {
  432. "physicalLocation": {
  433. "artifactLocation": {
  434. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  435. },
  436. "region": {
  437. "startLine": 680,
  438. "startColumn": 9
  439. }
  440. },
  441. "message": {
  442. "text": "Diese Verzweigung überspringen (Annahme: \"allzero\" ist false)"
  443. }
  444. },
  445. "kinds": [
  446. "branch"
  447. ],
  448. "importance": "important"
  449. },
  450. {
  451. "location": {
  452. "physicalLocation": {
  453. "artifactLocation": {
  454. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  455. },
  456. "region": {
  457. "startLine": 686,
  458. "startColumn": 46
  459. }
  460. },
  461. "message": {
  462. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  463. }
  464. },
  465. "kinds": [
  466. "branch"
  467. ],
  468. "importance": "important"
  469. },
  470. {
  471. "location": {
  472. "physicalLocation": {
  473. "artifactLocation": {
  474. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  475. },
  476. "region": {
  477. "startLine": 691,
  478. "startColumn": 8
  479. }
  480. }
  481. },
  482. "importance": "unimportant"
  483. },
  484. {
  485. "location": {
  486. "physicalLocation": {
  487. "artifactLocation": {
  488. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  489. },
  490. "region": {
  491. "startLine": 704,
  492. "startColumn": 7
  493. }
  494. }
  495. },
  496. "importance": "unimportant"
  497. },
  498. {
  499. "location": {
  500. "physicalLocation": {
  501. "artifactLocation": {
  502. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  503. },
  504. "region": {
  505. "startLine": 705,
  506. "startColumn": 12
  507. }
  508. }
  509. },
  510. "importance": "unimportant"
  511. },
  512. {
  513. "location": {
  514. "physicalLocation": {
  515. "artifactLocation": {
  516. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  517. },
  518. "region": {
  519. "startLine": 705,
  520. "startColumn": 19
  521. }
  522. },
  523. "message": {
  524. "text": "In diese Schleife eintreten (Annahme: \"i<nh\")"
  525. }
  526. },
  527. "kinds": [
  528. "branch"
  529. ],
  530. "importance": "important"
  531. },
  532. {
  533. "location": {
  534. "physicalLocation": {
  535. "artifactLocation": {
  536. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  537. },
  538. "region": {
  539. "startLine": 706,
  540. "startColumn": 14
  541. }
  542. }
  543. },
  544. "importance": "unimportant"
  545. },
  546. {
  547. "location": {
  548. "physicalLocation": {
  549. "artifactLocation": {
  550. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  551. },
  552. "region": {
  553. "startLine": 707,
  554. "startColumn": 14
  555. }
  556. }
  557. },
  558. "importance": "unimportant"
  559. },
  560. {
  561. "location": {
  562. "physicalLocation": {
  563. "artifactLocation": {
  564. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  565. },
  566. "region": {
  567. "startLine": 708,
  568. "startColumn": 12
  569. }
  570. }
  571. },
  572. "importance": "unimportant"
  573. },
  574. {
  575. "location": {
  576. "physicalLocation": {
  577. "artifactLocation": {
  578. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  579. },
  580. "region": {
  581. "startLine": 709,
  582. "startColumn": 16
  583. }
  584. }
  585. },
  586. "importance": "unimportant"
  587. },
  588. {
  589. "location": {
  590. "physicalLocation": {
  591. "artifactLocation": {
  592. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  593. },
  594. "region": {
  595. "startLine": 709,
  596. "startColumn": 23
  597. }
  598. },
  599. "message": {
  600. "text": "Diese Schleife überspringen (Annahme: \"x<boxt->w\" ist false)"
  601. }
  602. },
  603. "kinds": [
  604. "branch"
  605. ],
  606. "importance": "important"
  607. },
  608. {
  609. "location": {
  610. "physicalLocation": {
  611. "artifactLocation": {
  612. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  613. },
  614. "region": {
  615. "startLine": 716,
  616. "startColumn": 15
  617. }
  618. },
  619. "message": {
  620. "text": "Diese Verzweigung überspringen (Annahme: \"x==boxt->w\" ist false)"
  621. }
  622. },
  623. "kinds": [
  624. "branch"
  625. ],
  626. "importance": "important"
  627. },
  628. {
  629. "location": {
  630. "physicalLocation": {
  631. "artifactLocation": {
  632. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  633. },
  634. "region": {
  635. "startLine": 720,
  636. "startColumn": 16
  637. }
  638. }
  639. },
  640. "importance": "unimportant"
  641. },
  642. {
  643. "location": {
  644. "physicalLocation": {
  645. "artifactLocation": {
  646. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  647. },
  648. "region": {
  649. "startLine": 720,
  650. "startColumn": 18
  651. }
  652. },
  653. "message": {
  654. "text": "\"xh\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  655. }
  656. },
  657. "kinds": [
  658. "usage"
  659. ],
  660. "importance": "essential"
  661. }
  662. ]
  663. }
  664. ]
  665. }
  666. ]
  667. },
  668. {
  669. "ruleId": "C6001",
  670. "message": {
  671. "text": "Nicht initialisierter Speicher \"xs\" wird verwendet."
  672. },
  673. "locations": [
  674. {
  675. "physicalLocation": {
  676. "artifactLocation": {
  677. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  678. },
  679. "region": {
  680. "startLine": 733,
  681. "startColumn": 43,
  682. "endLine": 733,
  683. "endColumn": 43
  684. }
  685. },
  686. "logicalLocations": [
  687. {
  688. "decoratedName": "pixGetCCBorders",
  689. "kind": "function"
  690. }
  691. ]
  692. }
  693. ],
  694. "codeFlows": [
  695. {
  696. "threadFlows": [
  697. {
  698. "locations": [
  699. {
  700. "location": {
  701. "physicalLocation": {
  702. "artifactLocation": {
  703. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  704. },
  705. "region": {
  706. "startLine": 647,
  707. "startColumn": 11
  708. }
  709. }
  710. },
  711. "importance": "unimportant"
  712. },
  713. {
  714. "location": {
  715. "physicalLocation": {
  716. "artifactLocation": {
  717. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  718. },
  719. "region": {
  720. "startLine": 647,
  721. "startColumn": 20
  722. }
  723. }
  724. },
  725. "importance": "unimportant"
  726. },
  727. {
  728. "location": {
  729. "physicalLocation": {
  730. "artifactLocation": {
  731. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  732. },
  733. "region": {
  734. "startLine": 647,
  735. "startColumn": 23
  736. }
  737. }
  738. },
  739. "importance": "unimportant"
  740. },
  741. {
  742. "location": {
  743. "physicalLocation": {
  744. "artifactLocation": {
  745. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  746. },
  747. "region": {
  748. "startLine": 647,
  749. "startColumn": 26
  750. }
  751. }
  752. },
  753. "importance": "unimportant"
  754. },
  755. {
  756. "location": {
  757. "physicalLocation": {
  758. "artifactLocation": {
  759. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  760. },
  761. "region": {
  762. "startLine": 647,
  763. "startColumn": 30
  764. }
  765. }
  766. },
  767. "importance": "unimportant"
  768. },
  769. {
  770. "location": {
  771. "physicalLocation": {
  772. "artifactLocation": {
  773. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  774. },
  775. "region": {
  776. "startLine": 647,
  777. "startColumn": 33
  778. }
  779. }
  780. },
  781. "importance": "unimportant"
  782. },
  783. {
  784. "location": {
  785. "physicalLocation": {
  786. "artifactLocation": {
  787. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  788. },
  789. "region": {
  790. "startLine": 648,
  791. "startColumn": 11
  792. }
  793. },
  794. "message": {
  795. "text": "\"xs\" ist nicht initialisiert"
  796. }
  797. },
  798. "kinds": [
  799. "declaration"
  800. ],
  801. "importance": "essential"
  802. },
  803. {
  804. "location": {
  805. "physicalLocation": {
  806. "artifactLocation": {
  807. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  808. },
  809. "region": {
  810. "startLine": 648,
  811. "startColumn": 15
  812. }
  813. }
  814. },
  815. "importance": "unimportant"
  816. },
  817. {
  818. "location": {
  819. "physicalLocation": {
  820. "artifactLocation": {
  821. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  822. },
  823. "region": {
  824. "startLine": 649,
  825. "startColumn": 11
  826. }
  827. }
  828. },
  829. "importance": "unimportant"
  830. },
  831. {
  832. "location": {
  833. "physicalLocation": {
  834. "artifactLocation": {
  835. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  836. },
  837. "region": {
  838. "startLine": 650,
  839. "startColumn": 11
  840. }
  841. }
  842. },
  843. "importance": "unimportant"
  844. },
  845. {
  846. "location": {
  847. "physicalLocation": {
  848. "artifactLocation": {
  849. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  850. },
  851. "region": {
  852. "startLine": 650,
  853. "startColumn": 18
  854. }
  855. }
  856. },
  857. "importance": "unimportant"
  858. },
  859. {
  860. "location": {
  861. "physicalLocation": {
  862. "artifactLocation": {
  863. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  864. },
  865. "region": {
  866. "startLine": 651,
  867. "startColumn": 11
  868. }
  869. }
  870. },
  871. "importance": "unimportant"
  872. },
  873. {
  874. "location": {
  875. "physicalLocation": {
  876. "artifactLocation": {
  877. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  878. },
  879. "region": {
  880. "startLine": 652,
  881. "startColumn": 11
  882. }
  883. }
  884. },
  885. "importance": "unimportant"
  886. },
  887. {
  888. "location": {
  889. "physicalLocation": {
  890. "artifactLocation": {
  891. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  892. },
  893. "region": {
  894. "startLine": 653,
  895. "startColumn": 11
  896. }
  897. }
  898. },
  899. "importance": "unimportant"
  900. },
  901. {
  902. "location": {
  903. "physicalLocation": {
  904. "artifactLocation": {
  905. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  906. },
  907. "region": {
  908. "startLine": 654,
  909. "startColumn": 11
  910. }
  911. }
  912. },
  913. "importance": "unimportant"
  914. },
  915. {
  916. "location": {
  917. "physicalLocation": {
  918. "artifactLocation": {
  919. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  920. },
  921. "region": {
  922. "startLine": 655,
  923. "startColumn": 11
  924. }
  925. }
  926. },
  927. "importance": "unimportant"
  928. },
  929. {
  930. "location": {
  931. "physicalLocation": {
  932. "artifactLocation": {
  933. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  934. },
  935. "region": {
  936. "startLine": 657,
  937. "startColumn": 9
  938. }
  939. },
  940. "message": {
  941. "text": "Diese Verzweigung überspringen (Annahme: \"!pixs\" ist false)"
  942. }
  943. },
  944. "kinds": [
  945. "branch"
  946. ],
  947. "importance": "important"
  948. },
  949. {
  950. "location": {
  951. "physicalLocation": {
  952. "artifactLocation": {
  953. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  954. },
  955. "region": {
  956. "startLine": 659,
  957. "startColumn": 9
  958. }
  959. },
  960. "message": {
  961. "text": "Diese Verzweigung überspringen (Annahme: \"!box\" ist false)"
  962. }
  963. },
  964. "kinds": [
  965. "branch"
  966. ],
  967. "importance": "important"
  968. },
  969. {
  970. "location": {
  971. "physicalLocation": {
  972. "artifactLocation": {
  973. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  974. },
  975. "region": {
  976. "startLine": 661,
  977. "startColumn": 27
  978. }
  979. },
  980. "message": {
  981. "text": "Diese Verzweigung überspringen (Annahme: \"pixGetDepth(pixs)!=1\" ist false)"
  982. }
  983. },
  984. "kinds": [
  985. "branch"
  986. ],
  987. "importance": "important"
  988. },
  989. {
  990. "location": {
  991. "physicalLocation": {
  992. "artifactLocation": {
  993. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  994. },
  995. "region": {
  996. "startLine": 664,
  997. "startColumn": 12
  998. }
  999. }
  1000. },
  1001. "importance": "unimportant"
  1002. },
  1003. {
  1004. "location": {
  1005. "physicalLocation": {
  1006. "artifactLocation": {
  1007. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1008. },
  1009. "region": {
  1010. "startLine": 665,
  1011. "startColumn": 9
  1012. }
  1013. },
  1014. "message": {
  1015. "text": "Diese Verzweigung überspringen (Annahme: \"allzero\" ist false)"
  1016. }
  1017. },
  1018. "kinds": [
  1019. "branch"
  1020. ],
  1021. "importance": "important"
  1022. },
  1023. {
  1024. "location": {
  1025. "physicalLocation": {
  1026. "artifactLocation": {
  1027. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1028. },
  1029. "region": {
  1030. "startLine": 668,
  1031. "startColumn": 33
  1032. }
  1033. },
  1034. "message": {
  1035. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  1036. }
  1037. },
  1038. "kinds": [
  1039. "branch"
  1040. ],
  1041. "importance": "important"
  1042. },
  1043. {
  1044. "location": {
  1045. "physicalLocation": {
  1046. "artifactLocation": {
  1047. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1048. },
  1049. "region": {
  1050. "startLine": 672,
  1051. "startColumn": 22
  1052. }
  1053. }
  1054. },
  1055. "importance": "unimportant"
  1056. },
  1057. {
  1058. "location": {
  1059. "physicalLocation": {
  1060. "artifactLocation": {
  1061. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1062. },
  1063. "region": {
  1064. "startLine": 675,
  1065. "startColumn": 45
  1066. }
  1067. },
  1068. "message": {
  1069. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  1070. }
  1071. },
  1072. "kinds": [
  1073. "branch"
  1074. ],
  1075. "importance": "important"
  1076. },
  1077. {
  1078. "location": {
  1079. "physicalLocation": {
  1080. "artifactLocation": {
  1081. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1082. },
  1083. "region": {
  1084. "startLine": 679,
  1085. "startColumn": 12
  1086. }
  1087. }
  1088. },
  1089. "importance": "unimportant"
  1090. },
  1091. {
  1092. "location": {
  1093. "physicalLocation": {
  1094. "artifactLocation": {
  1095. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1096. },
  1097. "region": {
  1098. "startLine": 680,
  1099. "startColumn": 9
  1100. }
  1101. },
  1102. "message": {
  1103. "text": "Diese Verzweigung überspringen (Annahme: \"allzero\" ist false)"
  1104. }
  1105. },
  1106. "kinds": [
  1107. "branch"
  1108. ],
  1109. "importance": "important"
  1110. },
  1111. {
  1112. "location": {
  1113. "physicalLocation": {
  1114. "artifactLocation": {
  1115. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1116. },
  1117. "region": {
  1118. "startLine": 686,
  1119. "startColumn": 46
  1120. }
  1121. },
  1122. "message": {
  1123. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  1124. }
  1125. },
  1126. "kinds": [
  1127. "branch"
  1128. ],
  1129. "importance": "important"
  1130. },
  1131. {
  1132. "location": {
  1133. "physicalLocation": {
  1134. "artifactLocation": {
  1135. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1136. },
  1137. "region": {
  1138. "startLine": 691,
  1139. "startColumn": 8
  1140. }
  1141. }
  1142. },
  1143. "importance": "unimportant"
  1144. },
  1145. {
  1146. "location": {
  1147. "physicalLocation": {
  1148. "artifactLocation": {
  1149. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1150. },
  1151. "region": {
  1152. "startLine": 704,
  1153. "startColumn": 7
  1154. }
  1155. }
  1156. },
  1157. "importance": "unimportant"
  1158. },
  1159. {
  1160. "location": {
  1161. "physicalLocation": {
  1162. "artifactLocation": {
  1163. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1164. },
  1165. "region": {
  1166. "startLine": 705,
  1167. "startColumn": 12
  1168. }
  1169. }
  1170. },
  1171. "importance": "unimportant"
  1172. },
  1173. {
  1174. "location": {
  1175. "physicalLocation": {
  1176. "artifactLocation": {
  1177. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1178. },
  1179. "region": {
  1180. "startLine": 705,
  1181. "startColumn": 19
  1182. }
  1183. },
  1184. "message": {
  1185. "text": "In diese Schleife eintreten (Annahme: \"i<nh\")"
  1186. }
  1187. },
  1188. "kinds": [
  1189. "branch"
  1190. ],
  1191. "importance": "important"
  1192. },
  1193. {
  1194. "location": {
  1195. "physicalLocation": {
  1196. "artifactLocation": {
  1197. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1198. },
  1199. "region": {
  1200. "startLine": 706,
  1201. "startColumn": 14
  1202. }
  1203. }
  1204. },
  1205. "importance": "unimportant"
  1206. },
  1207. {
  1208. "location": {
  1209. "physicalLocation": {
  1210. "artifactLocation": {
  1211. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1212. },
  1213. "region": {
  1214. "startLine": 707,
  1215. "startColumn": 14
  1216. }
  1217. }
  1218. },
  1219. "importance": "unimportant"
  1220. },
  1221. {
  1222. "location": {
  1223. "physicalLocation": {
  1224. "artifactLocation": {
  1225. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1226. },
  1227. "region": {
  1228. "startLine": 708,
  1229. "startColumn": 12
  1230. }
  1231. }
  1232. },
  1233. "importance": "unimportant"
  1234. },
  1235. {
  1236. "location": {
  1237. "physicalLocation": {
  1238. "artifactLocation": {
  1239. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1240. },
  1241. "region": {
  1242. "startLine": 709,
  1243. "startColumn": 16
  1244. }
  1245. }
  1246. },
  1247. "importance": "unimportant"
  1248. },
  1249. {
  1250. "location": {
  1251. "physicalLocation": {
  1252. "artifactLocation": {
  1253. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1254. },
  1255. "region": {
  1256. "startLine": 709,
  1257. "startColumn": 23
  1258. }
  1259. },
  1260. "message": {
  1261. "text": "Diese Schleife überspringen (Annahme: \"x<boxt->w\" ist false)"
  1262. }
  1263. },
  1264. "kinds": [
  1265. "branch"
  1266. ],
  1267. "importance": "important"
  1268. },
  1269. {
  1270. "location": {
  1271. "physicalLocation": {
  1272. "artifactLocation": {
  1273. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1274. },
  1275. "region": {
  1276. "startLine": 716,
  1277. "startColumn": 15
  1278. }
  1279. },
  1280. "message": {
  1281. "text": "Diese Verzweigung überspringen (Annahme: \"x==boxt->w\" ist false)"
  1282. }
  1283. },
  1284. "kinds": [
  1285. "branch"
  1286. ],
  1287. "importance": "important"
  1288. },
  1289. {
  1290. "location": {
  1291. "physicalLocation": {
  1292. "artifactLocation": {
  1293. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1294. },
  1295. "region": {
  1296. "startLine": 720,
  1297. "startColumn": 16
  1298. }
  1299. }
  1300. },
  1301. "importance": "unimportant"
  1302. },
  1303. {
  1304. "location": {
  1305. "physicalLocation": {
  1306. "artifactLocation": {
  1307. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1308. },
  1309. "region": {
  1310. "startLine": 720,
  1311. "startColumn": 34
  1312. }
  1313. },
  1314. "message": {
  1315. "text": "Diese Schleife überspringen (Annahme: \"x<w\" ist false)"
  1316. }
  1317. },
  1318. "kinds": [
  1319. "branch"
  1320. ],
  1321. "importance": "important"
  1322. },
  1323. {
  1324. "location": {
  1325. "physicalLocation": {
  1326. "artifactLocation": {
  1327. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1328. },
  1329. "region": {
  1330. "startLine": 727,
  1331. "startColumn": 14
  1332. }
  1333. }
  1334. },
  1335. "importance": "unimportant"
  1336. },
  1337. {
  1338. "location": {
  1339. "physicalLocation": {
  1340. "artifactLocation": {
  1341. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1342. },
  1343. "region": {
  1344. "startLine": 733,
  1345. "startColumn": 25
  1346. }
  1347. },
  1348. "message": {
  1349. "text": "\"xs\" ist ein Eingabe-/Ausgabeargument für \"pixGetHoleBorder\" (in Zeile 292 deklariert)"
  1350. }
  1351. },
  1352. "kinds": [
  1353. "declaration"
  1354. ],
  1355. "importance": "important"
  1356. },
  1357. {
  1358. "location": {
  1359. "physicalLocation": {
  1360. "artifactLocation": {
  1361. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1362. },
  1363. "region": {
  1364. "startLine": 734,
  1365. "startColumn": 19
  1366. }
  1367. }
  1368. },
  1369. "importance": "unimportant"
  1370. },
  1371. {
  1372. "location": {
  1373. "physicalLocation": {
  1374. "artifactLocation": {
  1375. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1376. },
  1377. "region": {
  1378. "startLine": 735,
  1379. "startColumn": 19
  1380. }
  1381. }
  1382. },
  1383. "importance": "unimportant"
  1384. },
  1385. {
  1386. "location": {
  1387. "physicalLocation": {
  1388. "artifactLocation": {
  1389. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1390. },
  1391. "region": {
  1392. "startLine": 736,
  1393. "startColumn": 19
  1394. }
  1395. }
  1396. },
  1397. "importance": "unimportant"
  1398. },
  1399. {
  1400. "location": {
  1401. "physicalLocation": {
  1402. "artifactLocation": {
  1403. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1404. },
  1405. "region": {
  1406. "startLine": 733,
  1407. "startColumn": 43
  1408. }
  1409. },
  1410. "message": {
  1411. "text": "\"xs\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  1412. }
  1413. },
  1414. "kinds": [
  1415. "usage"
  1416. ],
  1417. "importance": "essential"
  1418. }
  1419. ]
  1420. }
  1421. ]
  1422. }
  1423. ]
  1424. },
  1425. {
  1426. "ruleId": "C6001",
  1427. "message": {
  1428. "text": "Nicht initialisierter Speicher \"fpx\" wird verwendet."
  1429. },
  1430. "locations": [
  1431. {
  1432. "physicalLocation": {
  1433. "artifactLocation": {
  1434. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1435. },
  1436. "region": {
  1437. "startLine": 2043,
  1438. "startColumn": 40,
  1439. "endLine": 2043,
  1440. "endColumn": 40
  1441. }
  1442. },
  1443. "logicalLocations": [
  1444. {
  1445. "decoratedName": "ccbaDisplayImage1",
  1446. "kind": "function"
  1447. }
  1448. ]
  1449. }
  1450. ],
  1451. "codeFlows": [
  1452. {
  1453. "threadFlows": [
  1454. {
  1455. "locations": [
  1456. {
  1457. "location": {
  1458. "physicalLocation": {
  1459. "artifactLocation": {
  1460. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1461. },
  1462. "region": {
  1463. "startLine": 1961,
  1464. "startColumn": 10
  1465. }
  1466. }
  1467. },
  1468. "importance": "unimportant"
  1469. },
  1470. {
  1471. "location": {
  1472. "physicalLocation": {
  1473. "artifactLocation": {
  1474. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1475. },
  1476. "region": {
  1477. "startLine": 1961,
  1478. "startColumn": 15
  1479. }
  1480. }
  1481. },
  1482. "importance": "unimportant"
  1483. },
  1484. {
  1485. "location": {
  1486. "physicalLocation": {
  1487. "artifactLocation": {
  1488. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1489. },
  1490. "region": {
  1491. "startLine": 1961,
  1492. "startColumn": 18
  1493. }
  1494. }
  1495. },
  1496. "importance": "unimportant"
  1497. },
  1498. {
  1499. "location": {
  1500. "physicalLocation": {
  1501. "artifactLocation": {
  1502. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1503. },
  1504. "region": {
  1505. "startLine": 1961,
  1506. "startColumn": 22
  1507. }
  1508. }
  1509. },
  1510. "importance": "unimportant"
  1511. },
  1512. {
  1513. "location": {
  1514. "physicalLocation": {
  1515. "artifactLocation": {
  1516. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1517. },
  1518. "region": {
  1519. "startLine": 1961,
  1520. "startColumn": 25
  1521. }
  1522. }
  1523. },
  1524. "importance": "unimportant"
  1525. },
  1526. {
  1527. "location": {
  1528. "physicalLocation": {
  1529. "artifactLocation": {
  1530. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1531. },
  1532. "region": {
  1533. "startLine": 1961,
  1534. "startColumn": 28
  1535. }
  1536. }
  1537. },
  1538. "importance": "unimportant"
  1539. },
  1540. {
  1541. "location": {
  1542. "physicalLocation": {
  1543. "artifactLocation": {
  1544. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1545. },
  1546. "region": {
  1547. "startLine": 1961,
  1548. "startColumn": 31
  1549. }
  1550. }
  1551. },
  1552. "importance": "unimportant"
  1553. },
  1554. {
  1555. "location": {
  1556. "physicalLocation": {
  1557. "artifactLocation": {
  1558. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1559. },
  1560. "region": {
  1561. "startLine": 1961,
  1562. "startColumn": 34
  1563. }
  1564. }
  1565. },
  1566. "importance": "unimportant"
  1567. },
  1568. {
  1569. "location": {
  1570. "physicalLocation": {
  1571. "artifactLocation": {
  1572. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1573. },
  1574. "region": {
  1575. "startLine": 1961,
  1576. "startColumn": 37
  1577. }
  1578. }
  1579. },
  1580. "importance": "unimportant"
  1581. },
  1582. {
  1583. "location": {
  1584. "physicalLocation": {
  1585. "artifactLocation": {
  1586. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1587. },
  1588. "region": {
  1589. "startLine": 1961,
  1590. "startColumn": 42
  1591. }
  1592. }
  1593. },
  1594. "importance": "unimportant"
  1595. },
  1596. {
  1597. "location": {
  1598. "physicalLocation": {
  1599. "artifactLocation": {
  1600. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1601. },
  1602. "region": {
  1603. "startLine": 1961,
  1604. "startColumn": 47
  1605. }
  1606. }
  1607. },
  1608. "importance": "unimportant"
  1609. },
  1610. {
  1611. "location": {
  1612. "physicalLocation": {
  1613. "artifactLocation": {
  1614. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1615. },
  1616. "region": {
  1617. "startLine": 1961,
  1618. "startColumn": 53
  1619. }
  1620. }
  1621. },
  1622. "importance": "unimportant"
  1623. },
  1624. {
  1625. "location": {
  1626. "physicalLocation": {
  1627. "artifactLocation": {
  1628. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1629. },
  1630. "region": {
  1631. "startLine": 1961,
  1632. "startColumn": 59
  1633. }
  1634. }
  1635. },
  1636. "importance": "unimportant"
  1637. },
  1638. {
  1639. "location": {
  1640. "physicalLocation": {
  1641. "artifactLocation": {
  1642. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1643. },
  1644. "region": {
  1645. "startLine": 1961,
  1646. "startColumn": 62
  1647. }
  1648. }
  1649. },
  1650. "importance": "unimportant"
  1651. },
  1652. {
  1653. "location": {
  1654. "physicalLocation": {
  1655. "artifactLocation": {
  1656. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1657. },
  1658. "region": {
  1659. "startLine": 1962,
  1660. "startColumn": 10
  1661. }
  1662. },
  1663. "message": {
  1664. "text": "\"fpx\" ist nicht initialisiert"
  1665. }
  1666. },
  1667. "kinds": [
  1668. "declaration"
  1669. ],
  1670. "importance": "essential"
  1671. },
  1672. {
  1673. "location": {
  1674. "physicalLocation": {
  1675. "artifactLocation": {
  1676. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1677. },
  1678. "region": {
  1679. "startLine": 1962,
  1680. "startColumn": 15
  1681. }
  1682. }
  1683. },
  1684. "importance": "unimportant"
  1685. },
  1686. {
  1687. "location": {
  1688. "physicalLocation": {
  1689. "artifactLocation": {
  1690. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1691. },
  1692. "region": {
  1693. "startLine": 1962,
  1694. "startColumn": 20
  1695. }
  1696. }
  1697. },
  1698. "importance": "unimportant"
  1699. },
  1700. {
  1701. "location": {
  1702. "physicalLocation": {
  1703. "artifactLocation": {
  1704. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1705. },
  1706. "region": {
  1707. "startLine": 1962,
  1708. "startColumn": 25
  1709. }
  1710. }
  1711. },
  1712. "importance": "unimportant"
  1713. },
  1714. {
  1715. "location": {
  1716. "physicalLocation": {
  1717. "artifactLocation": {
  1718. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1719. },
  1720. "region": {
  1721. "startLine": 1962,
  1722. "startColumn": 30
  1723. }
  1724. }
  1725. },
  1726. "importance": "unimportant"
  1727. },
  1728. {
  1729. "location": {
  1730. "physicalLocation": {
  1731. "artifactLocation": {
  1732. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1733. },
  1734. "region": {
  1735. "startLine": 1962,
  1736. "startColumn": 34
  1737. }
  1738. }
  1739. },
  1740. "importance": "unimportant"
  1741. },
  1742. {
  1743. "location": {
  1744. "physicalLocation": {
  1745. "artifactLocation": {
  1746. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1747. },
  1748. "region": {
  1749. "startLine": 1963,
  1750. "startColumn": 10
  1751. }
  1752. }
  1753. },
  1754. "importance": "unimportant"
  1755. },
  1756. {
  1757. "location": {
  1758. "physicalLocation": {
  1759. "artifactLocation": {
  1760. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1761. },
  1762. "region": {
  1763. "startLine": 1964,
  1764. "startColumn": 10
  1765. }
  1766. }
  1767. },
  1768. "importance": "unimportant"
  1769. },
  1770. {
  1771. "location": {
  1772. "physicalLocation": {
  1773. "artifactLocation": {
  1774. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1775. },
  1776. "region": {
  1777. "startLine": 1965,
  1778. "startColumn": 10
  1779. }
  1780. }
  1781. },
  1782. "importance": "unimportant"
  1783. },
  1784. {
  1785. "location": {
  1786. "physicalLocation": {
  1787. "artifactLocation": {
  1788. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1789. },
  1790. "region": {
  1791. "startLine": 1966,
  1792. "startColumn": 10
  1793. }
  1794. }
  1795. },
  1796. "importance": "unimportant"
  1797. },
  1798. {
  1799. "location": {
  1800. "physicalLocation": {
  1801. "artifactLocation": {
  1802. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1803. },
  1804. "region": {
  1805. "startLine": 1966,
  1806. "startColumn": 17
  1807. }
  1808. }
  1809. },
  1810. "importance": "unimportant"
  1811. },
  1812. {
  1813. "location": {
  1814. "physicalLocation": {
  1815. "artifactLocation": {
  1816. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1817. },
  1818. "region": {
  1819. "startLine": 1966,
  1820. "startColumn": 24
  1821. }
  1822. }
  1823. },
  1824. "importance": "unimportant"
  1825. },
  1826. {
  1827. "location": {
  1828. "physicalLocation": {
  1829. "artifactLocation": {
  1830. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1831. },
  1832. "region": {
  1833. "startLine": 1967,
  1834. "startColumn": 10
  1835. }
  1836. }
  1837. },
  1838. "importance": "unimportant"
  1839. },
  1840. {
  1841. "location": {
  1842. "physicalLocation": {
  1843. "artifactLocation": {
  1844. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1845. },
  1846. "region": {
  1847. "startLine": 1968,
  1848. "startColumn": 10
  1849. }
  1850. }
  1851. },
  1852. "importance": "unimportant"
  1853. },
  1854. {
  1855. "location": {
  1856. "physicalLocation": {
  1857. "artifactLocation": {
  1858. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1859. },
  1860. "region": {
  1861. "startLine": 1970,
  1862. "startColumn": 9
  1863. }
  1864. },
  1865. "message": {
  1866. "text": "Diese Verzweigung überspringen (Annahme: \"!ccba\" ist false)"
  1867. }
  1868. },
  1869. "kinds": [
  1870. "branch"
  1871. ],
  1872. "importance": "important"
  1873. },
  1874. {
  1875. "location": {
  1876. "physicalLocation": {
  1877. "artifactLocation": {
  1878. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1879. },
  1880. "region": {
  1881. "startLine": 1973,
  1882. "startColumn": 49
  1883. }
  1884. },
  1885. "message": {
  1886. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  1887. }
  1888. },
  1889. "kinds": [
  1890. "branch"
  1891. ],
  1892. "importance": "important"
  1893. },
  1894. {
  1895. "location": {
  1896. "physicalLocation": {
  1897. "artifactLocation": {
  1898. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1899. },
  1900. "region": {
  1901. "startLine": 1975,
  1902. "startColumn": 9
  1903. }
  1904. }
  1905. },
  1906. "importance": "unimportant"
  1907. },
  1908. {
  1909. "location": {
  1910. "physicalLocation": {
  1911. "artifactLocation": {
  1912. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1913. },
  1914. "region": {
  1915. "startLine": 1976,
  1916. "startColumn": 12
  1917. }
  1918. }
  1919. },
  1920. "importance": "unimportant"
  1921. },
  1922. {
  1923. "location": {
  1924. "physicalLocation": {
  1925. "artifactLocation": {
  1926. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1927. },
  1928. "region": {
  1929. "startLine": 1976,
  1930. "startColumn": 19
  1931. }
  1932. },
  1933. "message": {
  1934. "text": "In diese Schleife eintreten (Annahme: \"i<ncc\")"
  1935. }
  1936. },
  1937. "kinds": [
  1938. "branch"
  1939. ],
  1940. "importance": "important"
  1941. },
  1942. {
  1943. "location": {
  1944. "physicalLocation": {
  1945. "artifactLocation": {
  1946. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1947. },
  1948. "region": {
  1949. "startLine": 1977,
  1950. "startColumn": 13
  1951. }
  1952. }
  1953. },
  1954. "importance": "unimportant"
  1955. },
  1956. {
  1957. "location": {
  1958. "physicalLocation": {
  1959. "artifactLocation": {
  1960. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1961. },
  1962. "region": {
  1963. "startLine": 1978,
  1964. "startColumn": 32
  1965. }
  1966. },
  1967. "message": {
  1968. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  1969. }
  1970. },
  1971. "kinds": [
  1972. "branch"
  1973. ],
  1974. "importance": "important"
  1975. },
  1976. {
  1977. "location": {
  1978. "physicalLocation": {
  1979. "artifactLocation": {
  1980. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1981. },
  1982. "region": {
  1983. "startLine": 1985,
  1984. "startColumn": 33
  1985. }
  1986. },
  1987. "message": {
  1988. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  1989. }
  1990. },
  1991. "kinds": [
  1992. "branch"
  1993. ],
  1994. "importance": "important"
  1995. },
  1996. {
  1997. "location": {
  1998. "physicalLocation": {
  1999. "artifactLocation": {
  2000. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2001. },
  2002. "region": {
  2003. "startLine": 1991,
  2004. "startColumn": 12
  2005. }
  2006. }
  2007. },
  2008. "importance": "unimportant"
  2009. },
  2010. {
  2011. "location": {
  2012. "physicalLocation": {
  2013. "artifactLocation": {
  2014. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2015. },
  2016. "region": {
  2017. "startLine": 1992,
  2018. "startColumn": 16
  2019. }
  2020. }
  2021. },
  2022. "importance": "unimportant"
  2023. },
  2024. {
  2025. "location": {
  2026. "physicalLocation": {
  2027. "artifactLocation": {
  2028. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2029. },
  2030. "region": {
  2031. "startLine": 1992,
  2032. "startColumn": 23
  2033. }
  2034. },
  2035. "message": {
  2036. "text": "In diese Schleife eintreten (Annahme: \"j<nb\")"
  2037. }
  2038. },
  2039. "kinds": [
  2040. "branch"
  2041. ],
  2042. "importance": "important"
  2043. },
  2044. {
  2045. "location": {
  2046. "physicalLocation": {
  2047. "artifactLocation": {
  2048. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2049. },
  2050. "region": {
  2051. "startLine": 1993,
  2052. "startColumn": 54
  2053. }
  2054. },
  2055. "message": {
  2056. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  2057. }
  2058. },
  2059. "kinds": [
  2060. "branch"
  2061. ],
  2062. "importance": "important"
  2063. },
  2064. {
  2065. "location": {
  2066. "physicalLocation": {
  2067. "artifactLocation": {
  2068. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2069. },
  2070. "region": {
  2071. "startLine": 1998,
  2072. "startColumn": 19
  2073. }
  2074. },
  2075. "message": {
  2076. "text": "In diese Verzweigung eintreten (Annahme: \"j==0\")"
  2077. }
  2078. },
  2079. "kinds": [
  2080. "branch"
  2081. ],
  2082. "importance": "important"
  2083. },
  2084. {
  2085. "location": {
  2086. "physicalLocation": {
  2087. "artifactLocation": {
  2088. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2089. },
  2090. "region": {
  2091. "startLine": 1999,
  2092. "startColumn": 31
  2093. }
  2094. }
  2095. },
  2096. "importance": "unimportant"
  2097. },
  2098. {
  2099. "location": {
  2100. "physicalLocation": {
  2101. "artifactLocation": {
  2102. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2103. },
  2104. "region": {
  2105. "startLine": 2000,
  2106. "startColumn": 22
  2107. }
  2108. }
  2109. },
  2110. "importance": "unimportant"
  2111. },
  2112. {
  2113. "location": {
  2114. "physicalLocation": {
  2115. "artifactLocation": {
  2116. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2117. },
  2118. "region": {
  2119. "startLine": 2004,
  2120. "startColumn": 23
  2121. }
  2122. }
  2123. },
  2124. "importance": "unimportant"
  2125. },
  2126. {
  2127. "location": {
  2128. "physicalLocation": {
  2129. "artifactLocation": {
  2130. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2131. },
  2132. "region": {
  2133. "startLine": 2010,
  2134. "startColumn": 45
  2135. }
  2136. },
  2137. "message": {
  2138. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  2139. }
  2140. },
  2141. "kinds": [
  2142. "branch"
  2143. ],
  2144. "importance": "important"
  2145. },
  2146. {
  2147. "location": {
  2148. "physicalLocation": {
  2149. "artifactLocation": {
  2150. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2151. },
  2152. "region": {
  2153. "startLine": 2015,
  2154. "startColumn": 17
  2155. }
  2156. }
  2157. },
  2158. "importance": "unimportant"
  2159. },
  2160. {
  2161. "location": {
  2162. "physicalLocation": {
  2163. "artifactLocation": {
  2164. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2165. },
  2166. "region": {
  2167. "startLine": 2016,
  2168. "startColumn": 15
  2169. }
  2170. }
  2171. },
  2172. "importance": "unimportant"
  2173. },
  2174. {
  2175. "location": {
  2176. "physicalLocation": {
  2177. "artifactLocation": {
  2178. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2179. },
  2180. "region": {
  2181. "startLine": 2017,
  2182. "startColumn": 20
  2183. }
  2184. }
  2185. },
  2186. "importance": "unimportant"
  2187. },
  2188. {
  2189. "location": {
  2190. "physicalLocation": {
  2191. "artifactLocation": {
  2192. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2193. },
  2194. "region": {
  2195. "startLine": 2017,
  2196. "startColumn": 27
  2197. }
  2198. },
  2199. "message": {
  2200. "text": "Diese Schleife überspringen (Annahme: \"k<n\" ist false)"
  2201. }
  2202. },
  2203. "kinds": [
  2204. "branch"
  2205. ],
  2206. "importance": "important"
  2207. },
  2208. {
  2209. "location": {
  2210. "physicalLocation": {
  2211. "artifactLocation": {
  2212. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2213. },
  2214. "region": {
  2215. "startLine": 2031,
  2216. "startColumn": 23
  2217. }
  2218. }
  2219. },
  2220. "importance": "unimportant"
  2221. },
  2222. {
  2223. "location": {
  2224. "physicalLocation": {
  2225. "artifactLocation": {
  2226. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2227. },
  2228. "region": {
  2229. "startLine": 2034,
  2230. "startColumn": 19
  2231. }
  2232. },
  2233. "message": {
  2234. "text": "In diese Verzweigung eintreten (Annahme: \"j==0\")"
  2235. }
  2236. },
  2237. "kinds": [
  2238. "branch"
  2239. ],
  2240. "importance": "important"
  2241. },
  2242. {
  2243. "location": {
  2244. "physicalLocation": {
  2245. "artifactLocation": {
  2246. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2247. },
  2248. "region": {
  2249. "startLine": 2035,
  2250. "startColumn": 60
  2251. }
  2252. },
  2253. "message": {
  2254. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  2255. }
  2256. },
  2257. "kinds": [
  2258. "branch"
  2259. ],
  2260. "importance": "important"
  2261. },
  2262. {
  2263. "location": {
  2264. "physicalLocation": {
  2265. "artifactLocation": {
  2266. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2267. },
  2268. "region": {
  2269. "startLine": 2054,
  2270. "startColumn": 24
  2271. }
  2272. }
  2273. },
  2274. "importance": "unimportant"
  2275. },
  2276. {
  2277. "location": {
  2278. "physicalLocation": {
  2279. "artifactLocation": {
  2280. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2281. },
  2282. "region": {
  2283. "startLine": 2056,
  2284. "startColumn": 23
  2285. }
  2286. }
  2287. },
  2288. "importance": "unimportant"
  2289. },
  2290. {
  2291. "location": {
  2292. "physicalLocation": {
  2293. "artifactLocation": {
  2294. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2295. },
  2296. "region": {
  2297. "startLine": 2057,
  2298. "startColumn": 23
  2299. }
  2300. }
  2301. },
  2302. "importance": "unimportant"
  2303. },
  2304. {
  2305. "location": {
  2306. "physicalLocation": {
  2307. "artifactLocation": {
  2308. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2309. },
  2310. "region": {
  2311. "startLine": 1992,
  2312. "startColumn": 30
  2313. }
  2314. }
  2315. },
  2316. "importance": "unimportant"
  2317. },
  2318. {
  2319. "location": {
  2320. "physicalLocation": {
  2321. "artifactLocation": {
  2322. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2323. },
  2324. "region": {
  2325. "startLine": 1992,
  2326. "startColumn": 23
  2327. }
  2328. },
  2329. "message": {
  2330. "text": "Diese Schleife fortsetzen (Annahme: \"j<nb\")"
  2331. }
  2332. },
  2333. "kinds": [
  2334. "branch"
  2335. ],
  2336. "importance": "important"
  2337. },
  2338. {
  2339. "location": {
  2340. "physicalLocation": {
  2341. "artifactLocation": {
  2342. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2343. },
  2344. "region": {
  2345. "startLine": 1993,
  2346. "startColumn": 54
  2347. }
  2348. },
  2349. "message": {
  2350. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  2351. }
  2352. },
  2353. "kinds": [
  2354. "branch"
  2355. ],
  2356. "importance": "important"
  2357. },
  2358. {
  2359. "location": {
  2360. "physicalLocation": {
  2361. "artifactLocation": {
  2362. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2363. },
  2364. "region": {
  2365. "startLine": 1998,
  2366. "startColumn": 19
  2367. }
  2368. },
  2369. "message": {
  2370. "text": "Diese Verzweigung überspringen (Annahme: \"j==0\" ist false)"
  2371. }
  2372. },
  2373. "kinds": [
  2374. "branch"
  2375. ],
  2376. "importance": "important"
  2377. },
  2378. {
  2379. "location": {
  2380. "physicalLocation": {
  2381. "artifactLocation": {
  2382. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2383. },
  2384. "region": {
  2385. "startLine": 2002,
  2386. "startColumn": 31
  2387. }
  2388. }
  2389. },
  2390. "importance": "unimportant"
  2391. },
  2392. {
  2393. "location": {
  2394. "physicalLocation": {
  2395. "artifactLocation": {
  2396. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2397. },
  2398. "region": {
  2399. "startLine": 2004,
  2400. "startColumn": 23
  2401. }
  2402. }
  2403. },
  2404. "importance": "unimportant"
  2405. },
  2406. {
  2407. "location": {
  2408. "physicalLocation": {
  2409. "artifactLocation": {
  2410. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2411. },
  2412. "region": {
  2413. "startLine": 2010,
  2414. "startColumn": 45
  2415. }
  2416. },
  2417. "message": {
  2418. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  2419. }
  2420. },
  2421. "kinds": [
  2422. "branch"
  2423. ],
  2424. "importance": "important"
  2425. },
  2426. {
  2427. "location": {
  2428. "physicalLocation": {
  2429. "artifactLocation": {
  2430. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2431. },
  2432. "region": {
  2433. "startLine": 2015,
  2434. "startColumn": 17
  2435. }
  2436. }
  2437. },
  2438. "importance": "unimportant"
  2439. },
  2440. {
  2441. "location": {
  2442. "physicalLocation": {
  2443. "artifactLocation": {
  2444. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2445. },
  2446. "region": {
  2447. "startLine": 2016,
  2448. "startColumn": 15
  2449. }
  2450. }
  2451. },
  2452. "importance": "unimportant"
  2453. },
  2454. {
  2455. "location": {
  2456. "physicalLocation": {
  2457. "artifactLocation": {
  2458. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2459. },
  2460. "region": {
  2461. "startLine": 2017,
  2462. "startColumn": 20
  2463. }
  2464. }
  2465. },
  2466. "importance": "unimportant"
  2467. },
  2468. {
  2469. "location": {
  2470. "physicalLocation": {
  2471. "artifactLocation": {
  2472. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2473. },
  2474. "region": {
  2475. "startLine": 2017,
  2476. "startColumn": 27
  2477. }
  2478. },
  2479. "message": {
  2480. "text": "Diese Schleife überspringen (Annahme: \"k<n\" ist false)"
  2481. }
  2482. },
  2483. "kinds": [
  2484. "branch"
  2485. ],
  2486. "importance": "important"
  2487. },
  2488. {
  2489. "location": {
  2490. "physicalLocation": {
  2491. "artifactLocation": {
  2492. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2493. },
  2494. "region": {
  2495. "startLine": 2031,
  2496. "startColumn": 23
  2497. }
  2498. }
  2499. },
  2500. "importance": "unimportant"
  2501. },
  2502. {
  2503. "location": {
  2504. "physicalLocation": {
  2505. "artifactLocation": {
  2506. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2507. },
  2508. "region": {
  2509. "startLine": 2034,
  2510. "startColumn": 19
  2511. }
  2512. },
  2513. "message": {
  2514. "text": "Diese Verzweigung überspringen (Annahme: \"j==0\" ist false)"
  2515. }
  2516. },
  2517. "kinds": [
  2518. "branch"
  2519. ],
  2520. "importance": "important"
  2521. },
  2522. {
  2523. "location": {
  2524. "physicalLocation": {
  2525. "artifactLocation": {
  2526. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2527. },
  2528. "region": {
  2529. "startLine": 2043,
  2530. "startColumn": 39
  2531. }
  2532. },
  2533. "message": {
  2534. "text": "\"fpx\" ist ein Eingabe-/Ausgabeargument für \"locateOutsideSeedPixel\" (in Zeile 298 deklariert)"
  2535. }
  2536. },
  2537. "kinds": [
  2538. "declaration"
  2539. ],
  2540. "importance": "important"
  2541. },
  2542. {
  2543. "location": {
  2544. "physicalLocation": {
  2545. "artifactLocation": {
  2546. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2547. },
  2548. "region": {
  2549. "startLine": 2047,
  2550. "startColumn": 22
  2551. }
  2552. }
  2553. },
  2554. "importance": "unimportant"
  2555. },
  2556. {
  2557. "location": {
  2558. "physicalLocation": {
  2559. "artifactLocation": {
  2560. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2561. },
  2562. "region": {
  2563. "startLine": 2048,
  2564. "startColumn": 28
  2565. }
  2566. }
  2567. },
  2568. "importance": "unimportant"
  2569. },
  2570. {
  2571. "location": {
  2572. "physicalLocation": {
  2573. "artifactLocation": {
  2574. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2575. },
  2576. "region": {
  2577. "startLine": 2049,
  2578. "startColumn": 26
  2579. }
  2580. }
  2581. },
  2582. "importance": "unimportant"
  2583. },
  2584. {
  2585. "location": {
  2586. "physicalLocation": {
  2587. "artifactLocation": {
  2588. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2589. },
  2590. "region": {
  2591. "startLine": 2050,
  2592. "startColumn": 34
  2593. }
  2594. }
  2595. },
  2596. "importance": "unimportant"
  2597. },
  2598. {
  2599. "location": {
  2600. "physicalLocation": {
  2601. "artifactLocation": {
  2602. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2603. },
  2604. "region": {
  2605. "startLine": 2043,
  2606. "startColumn": 40
  2607. }
  2608. },
  2609. "message": {
  2610. "text": "\"fpx\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  2611. }
  2612. },
  2613. "kinds": [
  2614. "usage"
  2615. ],
  2616. "importance": "essential"
  2617. }
  2618. ]
  2619. }
  2620. ]
  2621. }
  2622. ]
  2623. },
  2624. {
  2625. "ruleId": "C6001",
  2626. "message": {
  2627. "text": "Nicht initialisierter Speicher \"spy\" wird verwendet."
  2628. },
  2629. "locations": [
  2630. {
  2631. "physicalLocation": {
  2632. "artifactLocation": {
  2633. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2634. },
  2635. "region": {
  2636. "startLine": 2043,
  2637. "startColumn": 55,
  2638. "endLine": 2043,
  2639. "endColumn": 55
  2640. }
  2641. },
  2642. "logicalLocations": [
  2643. {
  2644. "decoratedName": "ccbaDisplayImage1",
  2645. "kind": "function"
  2646. }
  2647. ]
  2648. }
  2649. ],
  2650. "codeFlows": [
  2651. {
  2652. "threadFlows": [
  2653. {
  2654. "locations": [
  2655. {
  2656. "location": {
  2657. "physicalLocation": {
  2658. "artifactLocation": {
  2659. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2660. },
  2661. "region": {
  2662. "startLine": 1961,
  2663. "startColumn": 10
  2664. }
  2665. }
  2666. },
  2667. "importance": "unimportant"
  2668. },
  2669. {
  2670. "location": {
  2671. "physicalLocation": {
  2672. "artifactLocation": {
  2673. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2674. },
  2675. "region": {
  2676. "startLine": 1961,
  2677. "startColumn": 15
  2678. }
  2679. }
  2680. },
  2681. "importance": "unimportant"
  2682. },
  2683. {
  2684. "location": {
  2685. "physicalLocation": {
  2686. "artifactLocation": {
  2687. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2688. },
  2689. "region": {
  2690. "startLine": 1961,
  2691. "startColumn": 18
  2692. }
  2693. }
  2694. },
  2695. "importance": "unimportant"
  2696. },
  2697. {
  2698. "location": {
  2699. "physicalLocation": {
  2700. "artifactLocation": {
  2701. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2702. },
  2703. "region": {
  2704. "startLine": 1961,
  2705. "startColumn": 22
  2706. }
  2707. }
  2708. },
  2709. "importance": "unimportant"
  2710. },
  2711. {
  2712. "location": {
  2713. "physicalLocation": {
  2714. "artifactLocation": {
  2715. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2716. },
  2717. "region": {
  2718. "startLine": 1961,
  2719. "startColumn": 25
  2720. }
  2721. }
  2722. },
  2723. "importance": "unimportant"
  2724. },
  2725. {
  2726. "location": {
  2727. "physicalLocation": {
  2728. "artifactLocation": {
  2729. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2730. },
  2731. "region": {
  2732. "startLine": 1961,
  2733. "startColumn": 28
  2734. }
  2735. }
  2736. },
  2737. "importance": "unimportant"
  2738. },
  2739. {
  2740. "location": {
  2741. "physicalLocation": {
  2742. "artifactLocation": {
  2743. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2744. },
  2745. "region": {
  2746. "startLine": 1961,
  2747. "startColumn": 31
  2748. }
  2749. }
  2750. },
  2751. "importance": "unimportant"
  2752. },
  2753. {
  2754. "location": {
  2755. "physicalLocation": {
  2756. "artifactLocation": {
  2757. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2758. },
  2759. "region": {
  2760. "startLine": 1961,
  2761. "startColumn": 34
  2762. }
  2763. }
  2764. },
  2765. "importance": "unimportant"
  2766. },
  2767. {
  2768. "location": {
  2769. "physicalLocation": {
  2770. "artifactLocation": {
  2771. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2772. },
  2773. "region": {
  2774. "startLine": 1961,
  2775. "startColumn": 37
  2776. }
  2777. }
  2778. },
  2779. "importance": "unimportant"
  2780. },
  2781. {
  2782. "location": {
  2783. "physicalLocation": {
  2784. "artifactLocation": {
  2785. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2786. },
  2787. "region": {
  2788. "startLine": 1961,
  2789. "startColumn": 42
  2790. }
  2791. }
  2792. },
  2793. "importance": "unimportant"
  2794. },
  2795. {
  2796. "location": {
  2797. "physicalLocation": {
  2798. "artifactLocation": {
  2799. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2800. },
  2801. "region": {
  2802. "startLine": 1961,
  2803. "startColumn": 47
  2804. }
  2805. }
  2806. },
  2807. "importance": "unimportant"
  2808. },
  2809. {
  2810. "location": {
  2811. "physicalLocation": {
  2812. "artifactLocation": {
  2813. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2814. },
  2815. "region": {
  2816. "startLine": 1961,
  2817. "startColumn": 53
  2818. }
  2819. }
  2820. },
  2821. "importance": "unimportant"
  2822. },
  2823. {
  2824. "location": {
  2825. "physicalLocation": {
  2826. "artifactLocation": {
  2827. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2828. },
  2829. "region": {
  2830. "startLine": 1961,
  2831. "startColumn": 59
  2832. }
  2833. }
  2834. },
  2835. "importance": "unimportant"
  2836. },
  2837. {
  2838. "location": {
  2839. "physicalLocation": {
  2840. "artifactLocation": {
  2841. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2842. },
  2843. "region": {
  2844. "startLine": 1961,
  2845. "startColumn": 62
  2846. }
  2847. }
  2848. },
  2849. "importance": "unimportant"
  2850. },
  2851. {
  2852. "location": {
  2853. "physicalLocation": {
  2854. "artifactLocation": {
  2855. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2856. },
  2857. "region": {
  2858. "startLine": 1962,
  2859. "startColumn": 10
  2860. }
  2861. }
  2862. },
  2863. "importance": "unimportant"
  2864. },
  2865. {
  2866. "location": {
  2867. "physicalLocation": {
  2868. "artifactLocation": {
  2869. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2870. },
  2871. "region": {
  2872. "startLine": 1962,
  2873. "startColumn": 15
  2874. }
  2875. }
  2876. },
  2877. "importance": "unimportant"
  2878. },
  2879. {
  2880. "location": {
  2881. "physicalLocation": {
  2882. "artifactLocation": {
  2883. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2884. },
  2885. "region": {
  2886. "startLine": 1962,
  2887. "startColumn": 20
  2888. }
  2889. }
  2890. },
  2891. "importance": "unimportant"
  2892. },
  2893. {
  2894. "location": {
  2895. "physicalLocation": {
  2896. "artifactLocation": {
  2897. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2898. },
  2899. "region": {
  2900. "startLine": 1962,
  2901. "startColumn": 25
  2902. }
  2903. },
  2904. "message": {
  2905. "text": "\"spy\" ist nicht initialisiert"
  2906. }
  2907. },
  2908. "kinds": [
  2909. "declaration"
  2910. ],
  2911. "importance": "essential"
  2912. },
  2913. {
  2914. "location": {
  2915. "physicalLocation": {
  2916. "artifactLocation": {
  2917. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  2918. },
  2919. "region": {
  2920. "startLine": 1962,
  2921. "startColumn": 30
  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/leptonica/src/ccbord.c"
  2932. },
  2933. "region": {
  2934. "startLine": 1962,
  2935. "startColumn": 34
  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/leptonica/src/ccbord.c"
  2946. },
  2947. "region": {
  2948. "startLine": 1963,
  2949. "startColumn": 10
  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/leptonica/src/ccbord.c"
  2960. },
  2961. "region": {
  2962. "startLine": 1964,
  2963. "startColumn": 10
  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/leptonica/src/ccbord.c"
  2974. },
  2975. "region": {
  2976. "startLine": 1965,
  2977. "startColumn": 10
  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/leptonica/src/ccbord.c"
  2988. },
  2989. "region": {
  2990. "startLine": 1966,
  2991. "startColumn": 10
  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/leptonica/src/ccbord.c"
  3002. },
  3003. "region": {
  3004. "startLine": 1966,
  3005. "startColumn": 17
  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/leptonica/src/ccbord.c"
  3016. },
  3017. "region": {
  3018. "startLine": 1966,
  3019. "startColumn": 24
  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/leptonica/src/ccbord.c"
  3030. },
  3031. "region": {
  3032. "startLine": 1967,
  3033. "startColumn": 10
  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/leptonica/src/ccbord.c"
  3044. },
  3045. "region": {
  3046. "startLine": 1968,
  3047. "startColumn": 10
  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/leptonica/src/ccbord.c"
  3058. },
  3059. "region": {
  3060. "startLine": 1970,
  3061. "startColumn": 9
  3062. }
  3063. },
  3064. "message": {
  3065. "text": "Diese Verzweigung überspringen (Annahme: \"!ccba\" ist false)"
  3066. }
  3067. },
  3068. "kinds": [
  3069. "branch"
  3070. ],
  3071. "importance": "important"
  3072. },
  3073. {
  3074. "location": {
  3075. "physicalLocation": {
  3076. "artifactLocation": {
  3077. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3078. },
  3079. "region": {
  3080. "startLine": 1973,
  3081. "startColumn": 49
  3082. }
  3083. },
  3084. "message": {
  3085. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3086. }
  3087. },
  3088. "kinds": [
  3089. "branch"
  3090. ],
  3091. "importance": "important"
  3092. },
  3093. {
  3094. "location": {
  3095. "physicalLocation": {
  3096. "artifactLocation": {
  3097. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3098. },
  3099. "region": {
  3100. "startLine": 1975,
  3101. "startColumn": 9
  3102. }
  3103. }
  3104. },
  3105. "importance": "unimportant"
  3106. },
  3107. {
  3108. "location": {
  3109. "physicalLocation": {
  3110. "artifactLocation": {
  3111. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3112. },
  3113. "region": {
  3114. "startLine": 1976,
  3115. "startColumn": 12
  3116. }
  3117. }
  3118. },
  3119. "importance": "unimportant"
  3120. },
  3121. {
  3122. "location": {
  3123. "physicalLocation": {
  3124. "artifactLocation": {
  3125. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3126. },
  3127. "region": {
  3128. "startLine": 1976,
  3129. "startColumn": 19
  3130. }
  3131. },
  3132. "message": {
  3133. "text": "In diese Schleife eintreten (Annahme: \"i<ncc\")"
  3134. }
  3135. },
  3136. "kinds": [
  3137. "branch"
  3138. ],
  3139. "importance": "important"
  3140. },
  3141. {
  3142. "location": {
  3143. "physicalLocation": {
  3144. "artifactLocation": {
  3145. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3146. },
  3147. "region": {
  3148. "startLine": 1977,
  3149. "startColumn": 13
  3150. }
  3151. }
  3152. },
  3153. "importance": "unimportant"
  3154. },
  3155. {
  3156. "location": {
  3157. "physicalLocation": {
  3158. "artifactLocation": {
  3159. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3160. },
  3161. "region": {
  3162. "startLine": 1978,
  3163. "startColumn": 32
  3164. }
  3165. },
  3166. "message": {
  3167. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3168. }
  3169. },
  3170. "kinds": [
  3171. "branch"
  3172. ],
  3173. "importance": "important"
  3174. },
  3175. {
  3176. "location": {
  3177. "physicalLocation": {
  3178. "artifactLocation": {
  3179. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3180. },
  3181. "region": {
  3182. "startLine": 1985,
  3183. "startColumn": 33
  3184. }
  3185. },
  3186. "message": {
  3187. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3188. }
  3189. },
  3190. "kinds": [
  3191. "branch"
  3192. ],
  3193. "importance": "important"
  3194. },
  3195. {
  3196. "location": {
  3197. "physicalLocation": {
  3198. "artifactLocation": {
  3199. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3200. },
  3201. "region": {
  3202. "startLine": 1991,
  3203. "startColumn": 12
  3204. }
  3205. }
  3206. },
  3207. "importance": "unimportant"
  3208. },
  3209. {
  3210. "location": {
  3211. "physicalLocation": {
  3212. "artifactLocation": {
  3213. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3214. },
  3215. "region": {
  3216. "startLine": 1992,
  3217. "startColumn": 16
  3218. }
  3219. }
  3220. },
  3221. "importance": "unimportant"
  3222. },
  3223. {
  3224. "location": {
  3225. "physicalLocation": {
  3226. "artifactLocation": {
  3227. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3228. },
  3229. "region": {
  3230. "startLine": 1992,
  3231. "startColumn": 23
  3232. }
  3233. },
  3234. "message": {
  3235. "text": "In diese Schleife eintreten (Annahme: \"j<nb\")"
  3236. }
  3237. },
  3238. "kinds": [
  3239. "branch"
  3240. ],
  3241. "importance": "important"
  3242. },
  3243. {
  3244. "location": {
  3245. "physicalLocation": {
  3246. "artifactLocation": {
  3247. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3248. },
  3249. "region": {
  3250. "startLine": 1993,
  3251. "startColumn": 54
  3252. }
  3253. },
  3254. "message": {
  3255. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3256. }
  3257. },
  3258. "kinds": [
  3259. "branch"
  3260. ],
  3261. "importance": "important"
  3262. },
  3263. {
  3264. "location": {
  3265. "physicalLocation": {
  3266. "artifactLocation": {
  3267. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3268. },
  3269. "region": {
  3270. "startLine": 1998,
  3271. "startColumn": 19
  3272. }
  3273. },
  3274. "message": {
  3275. "text": "In diese Verzweigung eintreten (Annahme: \"j==0\")"
  3276. }
  3277. },
  3278. "kinds": [
  3279. "branch"
  3280. ],
  3281. "importance": "important"
  3282. },
  3283. {
  3284. "location": {
  3285. "physicalLocation": {
  3286. "artifactLocation": {
  3287. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3288. },
  3289. "region": {
  3290. "startLine": 1999,
  3291. "startColumn": 31
  3292. }
  3293. }
  3294. },
  3295. "importance": "unimportant"
  3296. },
  3297. {
  3298. "location": {
  3299. "physicalLocation": {
  3300. "artifactLocation": {
  3301. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3302. },
  3303. "region": {
  3304. "startLine": 2000,
  3305. "startColumn": 22
  3306. }
  3307. }
  3308. },
  3309. "importance": "unimportant"
  3310. },
  3311. {
  3312. "location": {
  3313. "physicalLocation": {
  3314. "artifactLocation": {
  3315. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3316. },
  3317. "region": {
  3318. "startLine": 2004,
  3319. "startColumn": 23
  3320. }
  3321. }
  3322. },
  3323. "importance": "unimportant"
  3324. },
  3325. {
  3326. "location": {
  3327. "physicalLocation": {
  3328. "artifactLocation": {
  3329. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3330. },
  3331. "region": {
  3332. "startLine": 2010,
  3333. "startColumn": 45
  3334. }
  3335. },
  3336. "message": {
  3337. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3338. }
  3339. },
  3340. "kinds": [
  3341. "branch"
  3342. ],
  3343. "importance": "important"
  3344. },
  3345. {
  3346. "location": {
  3347. "physicalLocation": {
  3348. "artifactLocation": {
  3349. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3350. },
  3351. "region": {
  3352. "startLine": 2015,
  3353. "startColumn": 17
  3354. }
  3355. }
  3356. },
  3357. "importance": "unimportant"
  3358. },
  3359. {
  3360. "location": {
  3361. "physicalLocation": {
  3362. "artifactLocation": {
  3363. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3364. },
  3365. "region": {
  3366. "startLine": 2016,
  3367. "startColumn": 15
  3368. }
  3369. }
  3370. },
  3371. "importance": "unimportant"
  3372. },
  3373. {
  3374. "location": {
  3375. "physicalLocation": {
  3376. "artifactLocation": {
  3377. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3378. },
  3379. "region": {
  3380. "startLine": 2017,
  3381. "startColumn": 20
  3382. }
  3383. }
  3384. },
  3385. "importance": "unimportant"
  3386. },
  3387. {
  3388. "location": {
  3389. "physicalLocation": {
  3390. "artifactLocation": {
  3391. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3392. },
  3393. "region": {
  3394. "startLine": 2017,
  3395. "startColumn": 27
  3396. }
  3397. },
  3398. "message": {
  3399. "text": "Diese Schleife überspringen (Annahme: \"k<n\" ist false)"
  3400. }
  3401. },
  3402. "kinds": [
  3403. "branch"
  3404. ],
  3405. "importance": "important"
  3406. },
  3407. {
  3408. "location": {
  3409. "physicalLocation": {
  3410. "artifactLocation": {
  3411. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3412. },
  3413. "region": {
  3414. "startLine": 2031,
  3415. "startColumn": 23
  3416. }
  3417. }
  3418. },
  3419. "importance": "unimportant"
  3420. },
  3421. {
  3422. "location": {
  3423. "physicalLocation": {
  3424. "artifactLocation": {
  3425. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3426. },
  3427. "region": {
  3428. "startLine": 2034,
  3429. "startColumn": 19
  3430. }
  3431. },
  3432. "message": {
  3433. "text": "In diese Verzweigung eintreten (Annahme: \"j==0\")"
  3434. }
  3435. },
  3436. "kinds": [
  3437. "branch"
  3438. ],
  3439. "importance": "important"
  3440. },
  3441. {
  3442. "location": {
  3443. "physicalLocation": {
  3444. "artifactLocation": {
  3445. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3446. },
  3447. "region": {
  3448. "startLine": 2035,
  3449. "startColumn": 60
  3450. }
  3451. },
  3452. "message": {
  3453. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3454. }
  3455. },
  3456. "kinds": [
  3457. "branch"
  3458. ],
  3459. "importance": "important"
  3460. },
  3461. {
  3462. "location": {
  3463. "physicalLocation": {
  3464. "artifactLocation": {
  3465. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3466. },
  3467. "region": {
  3468. "startLine": 2054,
  3469. "startColumn": 24
  3470. }
  3471. }
  3472. },
  3473. "importance": "unimportant"
  3474. },
  3475. {
  3476. "location": {
  3477. "physicalLocation": {
  3478. "artifactLocation": {
  3479. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3480. },
  3481. "region": {
  3482. "startLine": 2056,
  3483. "startColumn": 23
  3484. }
  3485. }
  3486. },
  3487. "importance": "unimportant"
  3488. },
  3489. {
  3490. "location": {
  3491. "physicalLocation": {
  3492. "artifactLocation": {
  3493. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3494. },
  3495. "region": {
  3496. "startLine": 2057,
  3497. "startColumn": 23
  3498. }
  3499. }
  3500. },
  3501. "importance": "unimportant"
  3502. },
  3503. {
  3504. "location": {
  3505. "physicalLocation": {
  3506. "artifactLocation": {
  3507. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3508. },
  3509. "region": {
  3510. "startLine": 1992,
  3511. "startColumn": 30
  3512. }
  3513. }
  3514. },
  3515. "importance": "unimportant"
  3516. },
  3517. {
  3518. "location": {
  3519. "physicalLocation": {
  3520. "artifactLocation": {
  3521. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3522. },
  3523. "region": {
  3524. "startLine": 1992,
  3525. "startColumn": 23
  3526. }
  3527. },
  3528. "message": {
  3529. "text": "Diese Schleife fortsetzen (Annahme: \"j<nb\")"
  3530. }
  3531. },
  3532. "kinds": [
  3533. "branch"
  3534. ],
  3535. "importance": "important"
  3536. },
  3537. {
  3538. "location": {
  3539. "physicalLocation": {
  3540. "artifactLocation": {
  3541. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3542. },
  3543. "region": {
  3544. "startLine": 1993,
  3545. "startColumn": 54
  3546. }
  3547. },
  3548. "message": {
  3549. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3550. }
  3551. },
  3552. "kinds": [
  3553. "branch"
  3554. ],
  3555. "importance": "important"
  3556. },
  3557. {
  3558. "location": {
  3559. "physicalLocation": {
  3560. "artifactLocation": {
  3561. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3562. },
  3563. "region": {
  3564. "startLine": 1998,
  3565. "startColumn": 19
  3566. }
  3567. },
  3568. "message": {
  3569. "text": "Diese Verzweigung überspringen (Annahme: \"j==0\" ist false)"
  3570. }
  3571. },
  3572. "kinds": [
  3573. "branch"
  3574. ],
  3575. "importance": "important"
  3576. },
  3577. {
  3578. "location": {
  3579. "physicalLocation": {
  3580. "artifactLocation": {
  3581. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3582. },
  3583. "region": {
  3584. "startLine": 2002,
  3585. "startColumn": 31
  3586. }
  3587. }
  3588. },
  3589. "importance": "unimportant"
  3590. },
  3591. {
  3592. "location": {
  3593. "physicalLocation": {
  3594. "artifactLocation": {
  3595. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3596. },
  3597. "region": {
  3598. "startLine": 2004,
  3599. "startColumn": 23
  3600. }
  3601. }
  3602. },
  3603. "importance": "unimportant"
  3604. },
  3605. {
  3606. "location": {
  3607. "physicalLocation": {
  3608. "artifactLocation": {
  3609. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3610. },
  3611. "region": {
  3612. "startLine": 2010,
  3613. "startColumn": 45
  3614. }
  3615. },
  3616. "message": {
  3617. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3618. }
  3619. },
  3620. "kinds": [
  3621. "branch"
  3622. ],
  3623. "importance": "important"
  3624. },
  3625. {
  3626. "location": {
  3627. "physicalLocation": {
  3628. "artifactLocation": {
  3629. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3630. },
  3631. "region": {
  3632. "startLine": 2015,
  3633. "startColumn": 17
  3634. }
  3635. }
  3636. },
  3637. "importance": "unimportant"
  3638. },
  3639. {
  3640. "location": {
  3641. "physicalLocation": {
  3642. "artifactLocation": {
  3643. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3644. },
  3645. "region": {
  3646. "startLine": 2016,
  3647. "startColumn": 15
  3648. }
  3649. }
  3650. },
  3651. "importance": "unimportant"
  3652. },
  3653. {
  3654. "location": {
  3655. "physicalLocation": {
  3656. "artifactLocation": {
  3657. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3658. },
  3659. "region": {
  3660. "startLine": 2017,
  3661. "startColumn": 20
  3662. }
  3663. }
  3664. },
  3665. "importance": "unimportant"
  3666. },
  3667. {
  3668. "location": {
  3669. "physicalLocation": {
  3670. "artifactLocation": {
  3671. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3672. },
  3673. "region": {
  3674. "startLine": 2017,
  3675. "startColumn": 27
  3676. }
  3677. },
  3678. "message": {
  3679. "text": "Diese Schleife überspringen (Annahme: \"k<n\" ist false)"
  3680. }
  3681. },
  3682. "kinds": [
  3683. "branch"
  3684. ],
  3685. "importance": "important"
  3686. },
  3687. {
  3688. "location": {
  3689. "physicalLocation": {
  3690. "artifactLocation": {
  3691. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3692. },
  3693. "region": {
  3694. "startLine": 2031,
  3695. "startColumn": 23
  3696. }
  3697. }
  3698. },
  3699. "importance": "unimportant"
  3700. },
  3701. {
  3702. "location": {
  3703. "physicalLocation": {
  3704. "artifactLocation": {
  3705. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3706. },
  3707. "region": {
  3708. "startLine": 2034,
  3709. "startColumn": 19
  3710. }
  3711. },
  3712. "message": {
  3713. "text": "Diese Verzweigung überspringen (Annahme: \"j==0\" ist false)"
  3714. }
  3715. },
  3716. "kinds": [
  3717. "branch"
  3718. ],
  3719. "importance": "important"
  3720. },
  3721. {
  3722. "location": {
  3723. "physicalLocation": {
  3724. "artifactLocation": {
  3725. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3726. },
  3727. "region": {
  3728. "startLine": 2043,
  3729. "startColumn": 39
  3730. }
  3731. },
  3732. "message": {
  3733. "text": "\"spy\" ist ein Eingabe-/Ausgabeargument für \"locateOutsideSeedPixel\" (in Zeile 298 deklariert)"
  3734. }
  3735. },
  3736. "kinds": [
  3737. "declaration"
  3738. ],
  3739. "importance": "important"
  3740. },
  3741. {
  3742. "location": {
  3743. "physicalLocation": {
  3744. "artifactLocation": {
  3745. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3746. },
  3747. "region": {
  3748. "startLine": 2047,
  3749. "startColumn": 22
  3750. }
  3751. }
  3752. },
  3753. "importance": "unimportant"
  3754. },
  3755. {
  3756. "location": {
  3757. "physicalLocation": {
  3758. "artifactLocation": {
  3759. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3760. },
  3761. "region": {
  3762. "startLine": 2048,
  3763. "startColumn": 28
  3764. }
  3765. }
  3766. },
  3767. "importance": "unimportant"
  3768. },
  3769. {
  3770. "location": {
  3771. "physicalLocation": {
  3772. "artifactLocation": {
  3773. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3774. },
  3775. "region": {
  3776. "startLine": 2049,
  3777. "startColumn": 26
  3778. }
  3779. }
  3780. },
  3781. "importance": "unimportant"
  3782. },
  3783. {
  3784. "location": {
  3785. "physicalLocation": {
  3786. "artifactLocation": {
  3787. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3788. },
  3789. "region": {
  3790. "startLine": 2050,
  3791. "startColumn": 34
  3792. }
  3793. }
  3794. },
  3795. "importance": "unimportant"
  3796. },
  3797. {
  3798. "location": {
  3799. "physicalLocation": {
  3800. "artifactLocation": {
  3801. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3802. },
  3803. "region": {
  3804. "startLine": 2043,
  3805. "startColumn": 55
  3806. }
  3807. },
  3808. "message": {
  3809. "text": "\"spy\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  3810. }
  3811. },
  3812. "kinds": [
  3813. "usage"
  3814. ],
  3815. "importance": "essential"
  3816. }
  3817. ]
  3818. }
  3819. ]
  3820. }
  3821. ]
  3822. },
  3823. {
  3824. "ruleId": "C6001",
  3825. "message": {
  3826. "text": "Nicht initialisierter Speicher \"spx\" wird verwendet."
  3827. },
  3828. "locations": [
  3829. {
  3830. "physicalLocation": {
  3831. "artifactLocation": {
  3832. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3833. },
  3834. "region": {
  3835. "startLine": 2043,
  3836. "startColumn": 50,
  3837. "endLine": 2043,
  3838. "endColumn": 50
  3839. }
  3840. },
  3841. "logicalLocations": [
  3842. {
  3843. "decoratedName": "ccbaDisplayImage1",
  3844. "kind": "function"
  3845. }
  3846. ]
  3847. }
  3848. ],
  3849. "codeFlows": [
  3850. {
  3851. "threadFlows": [
  3852. {
  3853. "locations": [
  3854. {
  3855. "location": {
  3856. "physicalLocation": {
  3857. "artifactLocation": {
  3858. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3859. },
  3860. "region": {
  3861. "startLine": 1961,
  3862. "startColumn": 10
  3863. }
  3864. }
  3865. },
  3866. "importance": "unimportant"
  3867. },
  3868. {
  3869. "location": {
  3870. "physicalLocation": {
  3871. "artifactLocation": {
  3872. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3873. },
  3874. "region": {
  3875. "startLine": 1961,
  3876. "startColumn": 15
  3877. }
  3878. }
  3879. },
  3880. "importance": "unimportant"
  3881. },
  3882. {
  3883. "location": {
  3884. "physicalLocation": {
  3885. "artifactLocation": {
  3886. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3887. },
  3888. "region": {
  3889. "startLine": 1961,
  3890. "startColumn": 18
  3891. }
  3892. }
  3893. },
  3894. "importance": "unimportant"
  3895. },
  3896. {
  3897. "location": {
  3898. "physicalLocation": {
  3899. "artifactLocation": {
  3900. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3901. },
  3902. "region": {
  3903. "startLine": 1961,
  3904. "startColumn": 22
  3905. }
  3906. }
  3907. },
  3908. "importance": "unimportant"
  3909. },
  3910. {
  3911. "location": {
  3912. "physicalLocation": {
  3913. "artifactLocation": {
  3914. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3915. },
  3916. "region": {
  3917. "startLine": 1961,
  3918. "startColumn": 25
  3919. }
  3920. }
  3921. },
  3922. "importance": "unimportant"
  3923. },
  3924. {
  3925. "location": {
  3926. "physicalLocation": {
  3927. "artifactLocation": {
  3928. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3929. },
  3930. "region": {
  3931. "startLine": 1961,
  3932. "startColumn": 28
  3933. }
  3934. }
  3935. },
  3936. "importance": "unimportant"
  3937. },
  3938. {
  3939. "location": {
  3940. "physicalLocation": {
  3941. "artifactLocation": {
  3942. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3943. },
  3944. "region": {
  3945. "startLine": 1961,
  3946. "startColumn": 31
  3947. }
  3948. }
  3949. },
  3950. "importance": "unimportant"
  3951. },
  3952. {
  3953. "location": {
  3954. "physicalLocation": {
  3955. "artifactLocation": {
  3956. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3957. },
  3958. "region": {
  3959. "startLine": 1961,
  3960. "startColumn": 34
  3961. }
  3962. }
  3963. },
  3964. "importance": "unimportant"
  3965. },
  3966. {
  3967. "location": {
  3968. "physicalLocation": {
  3969. "artifactLocation": {
  3970. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3971. },
  3972. "region": {
  3973. "startLine": 1961,
  3974. "startColumn": 37
  3975. }
  3976. }
  3977. },
  3978. "importance": "unimportant"
  3979. },
  3980. {
  3981. "location": {
  3982. "physicalLocation": {
  3983. "artifactLocation": {
  3984. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3985. },
  3986. "region": {
  3987. "startLine": 1961,
  3988. "startColumn": 42
  3989. }
  3990. }
  3991. },
  3992. "importance": "unimportant"
  3993. },
  3994. {
  3995. "location": {
  3996. "physicalLocation": {
  3997. "artifactLocation": {
  3998. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  3999. },
  4000. "region": {
  4001. "startLine": 1961,
  4002. "startColumn": 47
  4003. }
  4004. }
  4005. },
  4006. "importance": "unimportant"
  4007. },
  4008. {
  4009. "location": {
  4010. "physicalLocation": {
  4011. "artifactLocation": {
  4012. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4013. },
  4014. "region": {
  4015. "startLine": 1961,
  4016. "startColumn": 53
  4017. }
  4018. }
  4019. },
  4020. "importance": "unimportant"
  4021. },
  4022. {
  4023. "location": {
  4024. "physicalLocation": {
  4025. "artifactLocation": {
  4026. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4027. },
  4028. "region": {
  4029. "startLine": 1961,
  4030. "startColumn": 59
  4031. }
  4032. }
  4033. },
  4034. "importance": "unimportant"
  4035. },
  4036. {
  4037. "location": {
  4038. "physicalLocation": {
  4039. "artifactLocation": {
  4040. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4041. },
  4042. "region": {
  4043. "startLine": 1961,
  4044. "startColumn": 62
  4045. }
  4046. }
  4047. },
  4048. "importance": "unimportant"
  4049. },
  4050. {
  4051. "location": {
  4052. "physicalLocation": {
  4053. "artifactLocation": {
  4054. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4055. },
  4056. "region": {
  4057. "startLine": 1962,
  4058. "startColumn": 10
  4059. }
  4060. }
  4061. },
  4062. "importance": "unimportant"
  4063. },
  4064. {
  4065. "location": {
  4066. "physicalLocation": {
  4067. "artifactLocation": {
  4068. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4069. },
  4070. "region": {
  4071. "startLine": 1962,
  4072. "startColumn": 15
  4073. }
  4074. }
  4075. },
  4076. "importance": "unimportant"
  4077. },
  4078. {
  4079. "location": {
  4080. "physicalLocation": {
  4081. "artifactLocation": {
  4082. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4083. },
  4084. "region": {
  4085. "startLine": 1962,
  4086. "startColumn": 20
  4087. }
  4088. },
  4089. "message": {
  4090. "text": "\"spx\" ist nicht initialisiert"
  4091. }
  4092. },
  4093. "kinds": [
  4094. "declaration"
  4095. ],
  4096. "importance": "essential"
  4097. },
  4098. {
  4099. "location": {
  4100. "physicalLocation": {
  4101. "artifactLocation": {
  4102. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4103. },
  4104. "region": {
  4105. "startLine": 1962,
  4106. "startColumn": 25
  4107. }
  4108. }
  4109. },
  4110. "importance": "unimportant"
  4111. },
  4112. {
  4113. "location": {
  4114. "physicalLocation": {
  4115. "artifactLocation": {
  4116. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4117. },
  4118. "region": {
  4119. "startLine": 1962,
  4120. "startColumn": 30
  4121. }
  4122. }
  4123. },
  4124. "importance": "unimportant"
  4125. },
  4126. {
  4127. "location": {
  4128. "physicalLocation": {
  4129. "artifactLocation": {
  4130. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4131. },
  4132. "region": {
  4133. "startLine": 1962,
  4134. "startColumn": 34
  4135. }
  4136. }
  4137. },
  4138. "importance": "unimportant"
  4139. },
  4140. {
  4141. "location": {
  4142. "physicalLocation": {
  4143. "artifactLocation": {
  4144. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4145. },
  4146. "region": {
  4147. "startLine": 1963,
  4148. "startColumn": 10
  4149. }
  4150. }
  4151. },
  4152. "importance": "unimportant"
  4153. },
  4154. {
  4155. "location": {
  4156. "physicalLocation": {
  4157. "artifactLocation": {
  4158. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4159. },
  4160. "region": {
  4161. "startLine": 1964,
  4162. "startColumn": 10
  4163. }
  4164. }
  4165. },
  4166. "importance": "unimportant"
  4167. },
  4168. {
  4169. "location": {
  4170. "physicalLocation": {
  4171. "artifactLocation": {
  4172. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4173. },
  4174. "region": {
  4175. "startLine": 1965,
  4176. "startColumn": 10
  4177. }
  4178. }
  4179. },
  4180. "importance": "unimportant"
  4181. },
  4182. {
  4183. "location": {
  4184. "physicalLocation": {
  4185. "artifactLocation": {
  4186. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4187. },
  4188. "region": {
  4189. "startLine": 1966,
  4190. "startColumn": 10
  4191. }
  4192. }
  4193. },
  4194. "importance": "unimportant"
  4195. },
  4196. {
  4197. "location": {
  4198. "physicalLocation": {
  4199. "artifactLocation": {
  4200. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4201. },
  4202. "region": {
  4203. "startLine": 1966,
  4204. "startColumn": 17
  4205. }
  4206. }
  4207. },
  4208. "importance": "unimportant"
  4209. },
  4210. {
  4211. "location": {
  4212. "physicalLocation": {
  4213. "artifactLocation": {
  4214. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4215. },
  4216. "region": {
  4217. "startLine": 1966,
  4218. "startColumn": 24
  4219. }
  4220. }
  4221. },
  4222. "importance": "unimportant"
  4223. },
  4224. {
  4225. "location": {
  4226. "physicalLocation": {
  4227. "artifactLocation": {
  4228. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4229. },
  4230. "region": {
  4231. "startLine": 1967,
  4232. "startColumn": 10
  4233. }
  4234. }
  4235. },
  4236. "importance": "unimportant"
  4237. },
  4238. {
  4239. "location": {
  4240. "physicalLocation": {
  4241. "artifactLocation": {
  4242. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4243. },
  4244. "region": {
  4245. "startLine": 1968,
  4246. "startColumn": 10
  4247. }
  4248. }
  4249. },
  4250. "importance": "unimportant"
  4251. },
  4252. {
  4253. "location": {
  4254. "physicalLocation": {
  4255. "artifactLocation": {
  4256. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4257. },
  4258. "region": {
  4259. "startLine": 1970,
  4260. "startColumn": 9
  4261. }
  4262. },
  4263. "message": {
  4264. "text": "Diese Verzweigung überspringen (Annahme: \"!ccba\" ist false)"
  4265. }
  4266. },
  4267. "kinds": [
  4268. "branch"
  4269. ],
  4270. "importance": "important"
  4271. },
  4272. {
  4273. "location": {
  4274. "physicalLocation": {
  4275. "artifactLocation": {
  4276. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4277. },
  4278. "region": {
  4279. "startLine": 1973,
  4280. "startColumn": 49
  4281. }
  4282. },
  4283. "message": {
  4284. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  4285. }
  4286. },
  4287. "kinds": [
  4288. "branch"
  4289. ],
  4290. "importance": "important"
  4291. },
  4292. {
  4293. "location": {
  4294. "physicalLocation": {
  4295. "artifactLocation": {
  4296. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4297. },
  4298. "region": {
  4299. "startLine": 1975,
  4300. "startColumn": 9
  4301. }
  4302. }
  4303. },
  4304. "importance": "unimportant"
  4305. },
  4306. {
  4307. "location": {
  4308. "physicalLocation": {
  4309. "artifactLocation": {
  4310. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4311. },
  4312. "region": {
  4313. "startLine": 1976,
  4314. "startColumn": 12
  4315. }
  4316. }
  4317. },
  4318. "importance": "unimportant"
  4319. },
  4320. {
  4321. "location": {
  4322. "physicalLocation": {
  4323. "artifactLocation": {
  4324. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4325. },
  4326. "region": {
  4327. "startLine": 1976,
  4328. "startColumn": 19
  4329. }
  4330. },
  4331. "message": {
  4332. "text": "In diese Schleife eintreten (Annahme: \"i<ncc\")"
  4333. }
  4334. },
  4335. "kinds": [
  4336. "branch"
  4337. ],
  4338. "importance": "important"
  4339. },
  4340. {
  4341. "location": {
  4342. "physicalLocation": {
  4343. "artifactLocation": {
  4344. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4345. },
  4346. "region": {
  4347. "startLine": 1977,
  4348. "startColumn": 13
  4349. }
  4350. }
  4351. },
  4352. "importance": "unimportant"
  4353. },
  4354. {
  4355. "location": {
  4356. "physicalLocation": {
  4357. "artifactLocation": {
  4358. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4359. },
  4360. "region": {
  4361. "startLine": 1978,
  4362. "startColumn": 32
  4363. }
  4364. },
  4365. "message": {
  4366. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  4367. }
  4368. },
  4369. "kinds": [
  4370. "branch"
  4371. ],
  4372. "importance": "important"
  4373. },
  4374. {
  4375. "location": {
  4376. "physicalLocation": {
  4377. "artifactLocation": {
  4378. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4379. },
  4380. "region": {
  4381. "startLine": 1985,
  4382. "startColumn": 33
  4383. }
  4384. },
  4385. "message": {
  4386. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  4387. }
  4388. },
  4389. "kinds": [
  4390. "branch"
  4391. ],
  4392. "importance": "important"
  4393. },
  4394. {
  4395. "location": {
  4396. "physicalLocation": {
  4397. "artifactLocation": {
  4398. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4399. },
  4400. "region": {
  4401. "startLine": 1991,
  4402. "startColumn": 12
  4403. }
  4404. }
  4405. },
  4406. "importance": "unimportant"
  4407. },
  4408. {
  4409. "location": {
  4410. "physicalLocation": {
  4411. "artifactLocation": {
  4412. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4413. },
  4414. "region": {
  4415. "startLine": 1992,
  4416. "startColumn": 16
  4417. }
  4418. }
  4419. },
  4420. "importance": "unimportant"
  4421. },
  4422. {
  4423. "location": {
  4424. "physicalLocation": {
  4425. "artifactLocation": {
  4426. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4427. },
  4428. "region": {
  4429. "startLine": 1992,
  4430. "startColumn": 23
  4431. }
  4432. },
  4433. "message": {
  4434. "text": "In diese Schleife eintreten (Annahme: \"j<nb\")"
  4435. }
  4436. },
  4437. "kinds": [
  4438. "branch"
  4439. ],
  4440. "importance": "important"
  4441. },
  4442. {
  4443. "location": {
  4444. "physicalLocation": {
  4445. "artifactLocation": {
  4446. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4447. },
  4448. "region": {
  4449. "startLine": 1993,
  4450. "startColumn": 54
  4451. }
  4452. },
  4453. "message": {
  4454. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  4455. }
  4456. },
  4457. "kinds": [
  4458. "branch"
  4459. ],
  4460. "importance": "important"
  4461. },
  4462. {
  4463. "location": {
  4464. "physicalLocation": {
  4465. "artifactLocation": {
  4466. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4467. },
  4468. "region": {
  4469. "startLine": 1998,
  4470. "startColumn": 19
  4471. }
  4472. },
  4473. "message": {
  4474. "text": "In diese Verzweigung eintreten (Annahme: \"j==0\")"
  4475. }
  4476. },
  4477. "kinds": [
  4478. "branch"
  4479. ],
  4480. "importance": "important"
  4481. },
  4482. {
  4483. "location": {
  4484. "physicalLocation": {
  4485. "artifactLocation": {
  4486. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4487. },
  4488. "region": {
  4489. "startLine": 1999,
  4490. "startColumn": 31
  4491. }
  4492. }
  4493. },
  4494. "importance": "unimportant"
  4495. },
  4496. {
  4497. "location": {
  4498. "physicalLocation": {
  4499. "artifactLocation": {
  4500. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4501. },
  4502. "region": {
  4503. "startLine": 2000,
  4504. "startColumn": 22
  4505. }
  4506. }
  4507. },
  4508. "importance": "unimportant"
  4509. },
  4510. {
  4511. "location": {
  4512. "physicalLocation": {
  4513. "artifactLocation": {
  4514. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4515. },
  4516. "region": {
  4517. "startLine": 2004,
  4518. "startColumn": 23
  4519. }
  4520. }
  4521. },
  4522. "importance": "unimportant"
  4523. },
  4524. {
  4525. "location": {
  4526. "physicalLocation": {
  4527. "artifactLocation": {
  4528. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4529. },
  4530. "region": {
  4531. "startLine": 2010,
  4532. "startColumn": 45
  4533. }
  4534. },
  4535. "message": {
  4536. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  4537. }
  4538. },
  4539. "kinds": [
  4540. "branch"
  4541. ],
  4542. "importance": "important"
  4543. },
  4544. {
  4545. "location": {
  4546. "physicalLocation": {
  4547. "artifactLocation": {
  4548. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4549. },
  4550. "region": {
  4551. "startLine": 2015,
  4552. "startColumn": 17
  4553. }
  4554. }
  4555. },
  4556. "importance": "unimportant"
  4557. },
  4558. {
  4559. "location": {
  4560. "physicalLocation": {
  4561. "artifactLocation": {
  4562. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4563. },
  4564. "region": {
  4565. "startLine": 2016,
  4566. "startColumn": 15
  4567. }
  4568. }
  4569. },
  4570. "importance": "unimportant"
  4571. },
  4572. {
  4573. "location": {
  4574. "physicalLocation": {
  4575. "artifactLocation": {
  4576. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4577. },
  4578. "region": {
  4579. "startLine": 2017,
  4580. "startColumn": 20
  4581. }
  4582. }
  4583. },
  4584. "importance": "unimportant"
  4585. },
  4586. {
  4587. "location": {
  4588. "physicalLocation": {
  4589. "artifactLocation": {
  4590. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4591. },
  4592. "region": {
  4593. "startLine": 2017,
  4594. "startColumn": 27
  4595. }
  4596. },
  4597. "message": {
  4598. "text": "Diese Schleife überspringen (Annahme: \"k<n\" ist false)"
  4599. }
  4600. },
  4601. "kinds": [
  4602. "branch"
  4603. ],
  4604. "importance": "important"
  4605. },
  4606. {
  4607. "location": {
  4608. "physicalLocation": {
  4609. "artifactLocation": {
  4610. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4611. },
  4612. "region": {
  4613. "startLine": 2031,
  4614. "startColumn": 23
  4615. }
  4616. }
  4617. },
  4618. "importance": "unimportant"
  4619. },
  4620. {
  4621. "location": {
  4622. "physicalLocation": {
  4623. "artifactLocation": {
  4624. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4625. },
  4626. "region": {
  4627. "startLine": 2034,
  4628. "startColumn": 19
  4629. }
  4630. },
  4631. "message": {
  4632. "text": "In diese Verzweigung eintreten (Annahme: \"j==0\")"
  4633. }
  4634. },
  4635. "kinds": [
  4636. "branch"
  4637. ],
  4638. "importance": "important"
  4639. },
  4640. {
  4641. "location": {
  4642. "physicalLocation": {
  4643. "artifactLocation": {
  4644. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4645. },
  4646. "region": {
  4647. "startLine": 2035,
  4648. "startColumn": 60
  4649. }
  4650. },
  4651. "message": {
  4652. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  4653. }
  4654. },
  4655. "kinds": [
  4656. "branch"
  4657. ],
  4658. "importance": "important"
  4659. },
  4660. {
  4661. "location": {
  4662. "physicalLocation": {
  4663. "artifactLocation": {
  4664. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4665. },
  4666. "region": {
  4667. "startLine": 2054,
  4668. "startColumn": 24
  4669. }
  4670. }
  4671. },
  4672. "importance": "unimportant"
  4673. },
  4674. {
  4675. "location": {
  4676. "physicalLocation": {
  4677. "artifactLocation": {
  4678. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4679. },
  4680. "region": {
  4681. "startLine": 2056,
  4682. "startColumn": 23
  4683. }
  4684. }
  4685. },
  4686. "importance": "unimportant"
  4687. },
  4688. {
  4689. "location": {
  4690. "physicalLocation": {
  4691. "artifactLocation": {
  4692. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4693. },
  4694. "region": {
  4695. "startLine": 2057,
  4696. "startColumn": 23
  4697. }
  4698. }
  4699. },
  4700. "importance": "unimportant"
  4701. },
  4702. {
  4703. "location": {
  4704. "physicalLocation": {
  4705. "artifactLocation": {
  4706. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4707. },
  4708. "region": {
  4709. "startLine": 1992,
  4710. "startColumn": 30
  4711. }
  4712. }
  4713. },
  4714. "importance": "unimportant"
  4715. },
  4716. {
  4717. "location": {
  4718. "physicalLocation": {
  4719. "artifactLocation": {
  4720. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4721. },
  4722. "region": {
  4723. "startLine": 1992,
  4724. "startColumn": 23
  4725. }
  4726. },
  4727. "message": {
  4728. "text": "Diese Schleife fortsetzen (Annahme: \"j<nb\")"
  4729. }
  4730. },
  4731. "kinds": [
  4732. "branch"
  4733. ],
  4734. "importance": "important"
  4735. },
  4736. {
  4737. "location": {
  4738. "physicalLocation": {
  4739. "artifactLocation": {
  4740. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4741. },
  4742. "region": {
  4743. "startLine": 1993,
  4744. "startColumn": 54
  4745. }
  4746. },
  4747. "message": {
  4748. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  4749. }
  4750. },
  4751. "kinds": [
  4752. "branch"
  4753. ],
  4754. "importance": "important"
  4755. },
  4756. {
  4757. "location": {
  4758. "physicalLocation": {
  4759. "artifactLocation": {
  4760. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4761. },
  4762. "region": {
  4763. "startLine": 1998,
  4764. "startColumn": 19
  4765. }
  4766. },
  4767. "message": {
  4768. "text": "Diese Verzweigung überspringen (Annahme: \"j==0\" ist false)"
  4769. }
  4770. },
  4771. "kinds": [
  4772. "branch"
  4773. ],
  4774. "importance": "important"
  4775. },
  4776. {
  4777. "location": {
  4778. "physicalLocation": {
  4779. "artifactLocation": {
  4780. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4781. },
  4782. "region": {
  4783. "startLine": 2002,
  4784. "startColumn": 31
  4785. }
  4786. }
  4787. },
  4788. "importance": "unimportant"
  4789. },
  4790. {
  4791. "location": {
  4792. "physicalLocation": {
  4793. "artifactLocation": {
  4794. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4795. },
  4796. "region": {
  4797. "startLine": 2004,
  4798. "startColumn": 23
  4799. }
  4800. }
  4801. },
  4802. "importance": "unimportant"
  4803. },
  4804. {
  4805. "location": {
  4806. "physicalLocation": {
  4807. "artifactLocation": {
  4808. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4809. },
  4810. "region": {
  4811. "startLine": 2010,
  4812. "startColumn": 45
  4813. }
  4814. },
  4815. "message": {
  4816. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  4817. }
  4818. },
  4819. "kinds": [
  4820. "branch"
  4821. ],
  4822. "importance": "important"
  4823. },
  4824. {
  4825. "location": {
  4826. "physicalLocation": {
  4827. "artifactLocation": {
  4828. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4829. },
  4830. "region": {
  4831. "startLine": 2015,
  4832. "startColumn": 17
  4833. }
  4834. }
  4835. },
  4836. "importance": "unimportant"
  4837. },
  4838. {
  4839. "location": {
  4840. "physicalLocation": {
  4841. "artifactLocation": {
  4842. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4843. },
  4844. "region": {
  4845. "startLine": 2016,
  4846. "startColumn": 15
  4847. }
  4848. }
  4849. },
  4850. "importance": "unimportant"
  4851. },
  4852. {
  4853. "location": {
  4854. "physicalLocation": {
  4855. "artifactLocation": {
  4856. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4857. },
  4858. "region": {
  4859. "startLine": 2017,
  4860. "startColumn": 20
  4861. }
  4862. }
  4863. },
  4864. "importance": "unimportant"
  4865. },
  4866. {
  4867. "location": {
  4868. "physicalLocation": {
  4869. "artifactLocation": {
  4870. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4871. },
  4872. "region": {
  4873. "startLine": 2017,
  4874. "startColumn": 27
  4875. }
  4876. },
  4877. "message": {
  4878. "text": "Diese Schleife überspringen (Annahme: \"k<n\" ist false)"
  4879. }
  4880. },
  4881. "kinds": [
  4882. "branch"
  4883. ],
  4884. "importance": "important"
  4885. },
  4886. {
  4887. "location": {
  4888. "physicalLocation": {
  4889. "artifactLocation": {
  4890. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4891. },
  4892. "region": {
  4893. "startLine": 2031,
  4894. "startColumn": 23
  4895. }
  4896. }
  4897. },
  4898. "importance": "unimportant"
  4899. },
  4900. {
  4901. "location": {
  4902. "physicalLocation": {
  4903. "artifactLocation": {
  4904. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4905. },
  4906. "region": {
  4907. "startLine": 2034,
  4908. "startColumn": 19
  4909. }
  4910. },
  4911. "message": {
  4912. "text": "Diese Verzweigung überspringen (Annahme: \"j==0\" ist false)"
  4913. }
  4914. },
  4915. "kinds": [
  4916. "branch"
  4917. ],
  4918. "importance": "important"
  4919. },
  4920. {
  4921. "location": {
  4922. "physicalLocation": {
  4923. "artifactLocation": {
  4924. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4925. },
  4926. "region": {
  4927. "startLine": 2043,
  4928. "startColumn": 39
  4929. }
  4930. },
  4931. "message": {
  4932. "text": "\"spx\" ist ein Eingabe-/Ausgabeargument für \"locateOutsideSeedPixel\" (in Zeile 298 deklariert)"
  4933. }
  4934. },
  4935. "kinds": [
  4936. "declaration"
  4937. ],
  4938. "importance": "important"
  4939. },
  4940. {
  4941. "location": {
  4942. "physicalLocation": {
  4943. "artifactLocation": {
  4944. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4945. },
  4946. "region": {
  4947. "startLine": 2047,
  4948. "startColumn": 22
  4949. }
  4950. }
  4951. },
  4952. "importance": "unimportant"
  4953. },
  4954. {
  4955. "location": {
  4956. "physicalLocation": {
  4957. "artifactLocation": {
  4958. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4959. },
  4960. "region": {
  4961. "startLine": 2048,
  4962. "startColumn": 28
  4963. }
  4964. }
  4965. },
  4966. "importance": "unimportant"
  4967. },
  4968. {
  4969. "location": {
  4970. "physicalLocation": {
  4971. "artifactLocation": {
  4972. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4973. },
  4974. "region": {
  4975. "startLine": 2049,
  4976. "startColumn": 26
  4977. }
  4978. }
  4979. },
  4980. "importance": "unimportant"
  4981. },
  4982. {
  4983. "location": {
  4984. "physicalLocation": {
  4985. "artifactLocation": {
  4986. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  4987. },
  4988. "region": {
  4989. "startLine": 2050,
  4990. "startColumn": 34
  4991. }
  4992. }
  4993. },
  4994. "importance": "unimportant"
  4995. },
  4996. {
  4997. "location": {
  4998. "physicalLocation": {
  4999. "artifactLocation": {
  5000. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5001. },
  5002. "region": {
  5003. "startLine": 2043,
  5004. "startColumn": 50
  5005. }
  5006. },
  5007. "message": {
  5008. "text": "\"spx\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  5009. }
  5010. },
  5011. "kinds": [
  5012. "usage"
  5013. ],
  5014. "importance": "essential"
  5015. }
  5016. ]
  5017. }
  5018. ]
  5019. }
  5020. ]
  5021. },
  5022. {
  5023. "ruleId": "C6001",
  5024. "message": {
  5025. "text": "Nicht initialisierter Speicher \"fpy\" wird verwendet."
  5026. },
  5027. "locations": [
  5028. {
  5029. "physicalLocation": {
  5030. "artifactLocation": {
  5031. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5032. },
  5033. "region": {
  5034. "startLine": 2043,
  5035. "startColumn": 45,
  5036. "endLine": 2043,
  5037. "endColumn": 45
  5038. }
  5039. },
  5040. "logicalLocations": [
  5041. {
  5042. "decoratedName": "ccbaDisplayImage1",
  5043. "kind": "function"
  5044. }
  5045. ]
  5046. }
  5047. ],
  5048. "codeFlows": [
  5049. {
  5050. "threadFlows": [
  5051. {
  5052. "locations": [
  5053. {
  5054. "location": {
  5055. "physicalLocation": {
  5056. "artifactLocation": {
  5057. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5058. },
  5059. "region": {
  5060. "startLine": 1961,
  5061. "startColumn": 10
  5062. }
  5063. }
  5064. },
  5065. "importance": "unimportant"
  5066. },
  5067. {
  5068. "location": {
  5069. "physicalLocation": {
  5070. "artifactLocation": {
  5071. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5072. },
  5073. "region": {
  5074. "startLine": 1961,
  5075. "startColumn": 15
  5076. }
  5077. }
  5078. },
  5079. "importance": "unimportant"
  5080. },
  5081. {
  5082. "location": {
  5083. "physicalLocation": {
  5084. "artifactLocation": {
  5085. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5086. },
  5087. "region": {
  5088. "startLine": 1961,
  5089. "startColumn": 18
  5090. }
  5091. }
  5092. },
  5093. "importance": "unimportant"
  5094. },
  5095. {
  5096. "location": {
  5097. "physicalLocation": {
  5098. "artifactLocation": {
  5099. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5100. },
  5101. "region": {
  5102. "startLine": 1961,
  5103. "startColumn": 22
  5104. }
  5105. }
  5106. },
  5107. "importance": "unimportant"
  5108. },
  5109. {
  5110. "location": {
  5111. "physicalLocation": {
  5112. "artifactLocation": {
  5113. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5114. },
  5115. "region": {
  5116. "startLine": 1961,
  5117. "startColumn": 25
  5118. }
  5119. }
  5120. },
  5121. "importance": "unimportant"
  5122. },
  5123. {
  5124. "location": {
  5125. "physicalLocation": {
  5126. "artifactLocation": {
  5127. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5128. },
  5129. "region": {
  5130. "startLine": 1961,
  5131. "startColumn": 28
  5132. }
  5133. }
  5134. },
  5135. "importance": "unimportant"
  5136. },
  5137. {
  5138. "location": {
  5139. "physicalLocation": {
  5140. "artifactLocation": {
  5141. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5142. },
  5143. "region": {
  5144. "startLine": 1961,
  5145. "startColumn": 31
  5146. }
  5147. }
  5148. },
  5149. "importance": "unimportant"
  5150. },
  5151. {
  5152. "location": {
  5153. "physicalLocation": {
  5154. "artifactLocation": {
  5155. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5156. },
  5157. "region": {
  5158. "startLine": 1961,
  5159. "startColumn": 34
  5160. }
  5161. }
  5162. },
  5163. "importance": "unimportant"
  5164. },
  5165. {
  5166. "location": {
  5167. "physicalLocation": {
  5168. "artifactLocation": {
  5169. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5170. },
  5171. "region": {
  5172. "startLine": 1961,
  5173. "startColumn": 37
  5174. }
  5175. }
  5176. },
  5177. "importance": "unimportant"
  5178. },
  5179. {
  5180. "location": {
  5181. "physicalLocation": {
  5182. "artifactLocation": {
  5183. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5184. },
  5185. "region": {
  5186. "startLine": 1961,
  5187. "startColumn": 42
  5188. }
  5189. }
  5190. },
  5191. "importance": "unimportant"
  5192. },
  5193. {
  5194. "location": {
  5195. "physicalLocation": {
  5196. "artifactLocation": {
  5197. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5198. },
  5199. "region": {
  5200. "startLine": 1961,
  5201. "startColumn": 47
  5202. }
  5203. }
  5204. },
  5205. "importance": "unimportant"
  5206. },
  5207. {
  5208. "location": {
  5209. "physicalLocation": {
  5210. "artifactLocation": {
  5211. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5212. },
  5213. "region": {
  5214. "startLine": 1961,
  5215. "startColumn": 53
  5216. }
  5217. }
  5218. },
  5219. "importance": "unimportant"
  5220. },
  5221. {
  5222. "location": {
  5223. "physicalLocation": {
  5224. "artifactLocation": {
  5225. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5226. },
  5227. "region": {
  5228. "startLine": 1961,
  5229. "startColumn": 59
  5230. }
  5231. }
  5232. },
  5233. "importance": "unimportant"
  5234. },
  5235. {
  5236. "location": {
  5237. "physicalLocation": {
  5238. "artifactLocation": {
  5239. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5240. },
  5241. "region": {
  5242. "startLine": 1961,
  5243. "startColumn": 62
  5244. }
  5245. }
  5246. },
  5247. "importance": "unimportant"
  5248. },
  5249. {
  5250. "location": {
  5251. "physicalLocation": {
  5252. "artifactLocation": {
  5253. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5254. },
  5255. "region": {
  5256. "startLine": 1962,
  5257. "startColumn": 10
  5258. }
  5259. }
  5260. },
  5261. "importance": "unimportant"
  5262. },
  5263. {
  5264. "location": {
  5265. "physicalLocation": {
  5266. "artifactLocation": {
  5267. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5268. },
  5269. "region": {
  5270. "startLine": 1962,
  5271. "startColumn": 15
  5272. }
  5273. },
  5274. "message": {
  5275. "text": "\"fpy\" ist nicht initialisiert"
  5276. }
  5277. },
  5278. "kinds": [
  5279. "declaration"
  5280. ],
  5281. "importance": "essential"
  5282. },
  5283. {
  5284. "location": {
  5285. "physicalLocation": {
  5286. "artifactLocation": {
  5287. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5288. },
  5289. "region": {
  5290. "startLine": 1962,
  5291. "startColumn": 20
  5292. }
  5293. }
  5294. },
  5295. "importance": "unimportant"
  5296. },
  5297. {
  5298. "location": {
  5299. "physicalLocation": {
  5300. "artifactLocation": {
  5301. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5302. },
  5303. "region": {
  5304. "startLine": 1962,
  5305. "startColumn": 25
  5306. }
  5307. }
  5308. },
  5309. "importance": "unimportant"
  5310. },
  5311. {
  5312. "location": {
  5313. "physicalLocation": {
  5314. "artifactLocation": {
  5315. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5316. },
  5317. "region": {
  5318. "startLine": 1962,
  5319. "startColumn": 30
  5320. }
  5321. }
  5322. },
  5323. "importance": "unimportant"
  5324. },
  5325. {
  5326. "location": {
  5327. "physicalLocation": {
  5328. "artifactLocation": {
  5329. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5330. },
  5331. "region": {
  5332. "startLine": 1962,
  5333. "startColumn": 34
  5334. }
  5335. }
  5336. },
  5337. "importance": "unimportant"
  5338. },
  5339. {
  5340. "location": {
  5341. "physicalLocation": {
  5342. "artifactLocation": {
  5343. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5344. },
  5345. "region": {
  5346. "startLine": 1963,
  5347. "startColumn": 10
  5348. }
  5349. }
  5350. },
  5351. "importance": "unimportant"
  5352. },
  5353. {
  5354. "location": {
  5355. "physicalLocation": {
  5356. "artifactLocation": {
  5357. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5358. },
  5359. "region": {
  5360. "startLine": 1964,
  5361. "startColumn": 10
  5362. }
  5363. }
  5364. },
  5365. "importance": "unimportant"
  5366. },
  5367. {
  5368. "location": {
  5369. "physicalLocation": {
  5370. "artifactLocation": {
  5371. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5372. },
  5373. "region": {
  5374. "startLine": 1965,
  5375. "startColumn": 10
  5376. }
  5377. }
  5378. },
  5379. "importance": "unimportant"
  5380. },
  5381. {
  5382. "location": {
  5383. "physicalLocation": {
  5384. "artifactLocation": {
  5385. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5386. },
  5387. "region": {
  5388. "startLine": 1966,
  5389. "startColumn": 10
  5390. }
  5391. }
  5392. },
  5393. "importance": "unimportant"
  5394. },
  5395. {
  5396. "location": {
  5397. "physicalLocation": {
  5398. "artifactLocation": {
  5399. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5400. },
  5401. "region": {
  5402. "startLine": 1966,
  5403. "startColumn": 17
  5404. }
  5405. }
  5406. },
  5407. "importance": "unimportant"
  5408. },
  5409. {
  5410. "location": {
  5411. "physicalLocation": {
  5412. "artifactLocation": {
  5413. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5414. },
  5415. "region": {
  5416. "startLine": 1966,
  5417. "startColumn": 24
  5418. }
  5419. }
  5420. },
  5421. "importance": "unimportant"
  5422. },
  5423. {
  5424. "location": {
  5425. "physicalLocation": {
  5426. "artifactLocation": {
  5427. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5428. },
  5429. "region": {
  5430. "startLine": 1967,
  5431. "startColumn": 10
  5432. }
  5433. }
  5434. },
  5435. "importance": "unimportant"
  5436. },
  5437. {
  5438. "location": {
  5439. "physicalLocation": {
  5440. "artifactLocation": {
  5441. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5442. },
  5443. "region": {
  5444. "startLine": 1968,
  5445. "startColumn": 10
  5446. }
  5447. }
  5448. },
  5449. "importance": "unimportant"
  5450. },
  5451. {
  5452. "location": {
  5453. "physicalLocation": {
  5454. "artifactLocation": {
  5455. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5456. },
  5457. "region": {
  5458. "startLine": 1970,
  5459. "startColumn": 9
  5460. }
  5461. },
  5462. "message": {
  5463. "text": "Diese Verzweigung überspringen (Annahme: \"!ccba\" ist false)"
  5464. }
  5465. },
  5466. "kinds": [
  5467. "branch"
  5468. ],
  5469. "importance": "important"
  5470. },
  5471. {
  5472. "location": {
  5473. "physicalLocation": {
  5474. "artifactLocation": {
  5475. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5476. },
  5477. "region": {
  5478. "startLine": 1973,
  5479. "startColumn": 49
  5480. }
  5481. },
  5482. "message": {
  5483. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  5484. }
  5485. },
  5486. "kinds": [
  5487. "branch"
  5488. ],
  5489. "importance": "important"
  5490. },
  5491. {
  5492. "location": {
  5493. "physicalLocation": {
  5494. "artifactLocation": {
  5495. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5496. },
  5497. "region": {
  5498. "startLine": 1975,
  5499. "startColumn": 9
  5500. }
  5501. }
  5502. },
  5503. "importance": "unimportant"
  5504. },
  5505. {
  5506. "location": {
  5507. "physicalLocation": {
  5508. "artifactLocation": {
  5509. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5510. },
  5511. "region": {
  5512. "startLine": 1976,
  5513. "startColumn": 12
  5514. }
  5515. }
  5516. },
  5517. "importance": "unimportant"
  5518. },
  5519. {
  5520. "location": {
  5521. "physicalLocation": {
  5522. "artifactLocation": {
  5523. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5524. },
  5525. "region": {
  5526. "startLine": 1976,
  5527. "startColumn": 19
  5528. }
  5529. },
  5530. "message": {
  5531. "text": "In diese Schleife eintreten (Annahme: \"i<ncc\")"
  5532. }
  5533. },
  5534. "kinds": [
  5535. "branch"
  5536. ],
  5537. "importance": "important"
  5538. },
  5539. {
  5540. "location": {
  5541. "physicalLocation": {
  5542. "artifactLocation": {
  5543. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5544. },
  5545. "region": {
  5546. "startLine": 1977,
  5547. "startColumn": 13
  5548. }
  5549. }
  5550. },
  5551. "importance": "unimportant"
  5552. },
  5553. {
  5554. "location": {
  5555. "physicalLocation": {
  5556. "artifactLocation": {
  5557. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5558. },
  5559. "region": {
  5560. "startLine": 1978,
  5561. "startColumn": 32
  5562. }
  5563. },
  5564. "message": {
  5565. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  5566. }
  5567. },
  5568. "kinds": [
  5569. "branch"
  5570. ],
  5571. "importance": "important"
  5572. },
  5573. {
  5574. "location": {
  5575. "physicalLocation": {
  5576. "artifactLocation": {
  5577. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5578. },
  5579. "region": {
  5580. "startLine": 1985,
  5581. "startColumn": 33
  5582. }
  5583. },
  5584. "message": {
  5585. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  5586. }
  5587. },
  5588. "kinds": [
  5589. "branch"
  5590. ],
  5591. "importance": "important"
  5592. },
  5593. {
  5594. "location": {
  5595. "physicalLocation": {
  5596. "artifactLocation": {
  5597. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5598. },
  5599. "region": {
  5600. "startLine": 1991,
  5601. "startColumn": 12
  5602. }
  5603. }
  5604. },
  5605. "importance": "unimportant"
  5606. },
  5607. {
  5608. "location": {
  5609. "physicalLocation": {
  5610. "artifactLocation": {
  5611. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5612. },
  5613. "region": {
  5614. "startLine": 1992,
  5615. "startColumn": 16
  5616. }
  5617. }
  5618. },
  5619. "importance": "unimportant"
  5620. },
  5621. {
  5622. "location": {
  5623. "physicalLocation": {
  5624. "artifactLocation": {
  5625. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5626. },
  5627. "region": {
  5628. "startLine": 1992,
  5629. "startColumn": 23
  5630. }
  5631. },
  5632. "message": {
  5633. "text": "In diese Schleife eintreten (Annahme: \"j<nb\")"
  5634. }
  5635. },
  5636. "kinds": [
  5637. "branch"
  5638. ],
  5639. "importance": "important"
  5640. },
  5641. {
  5642. "location": {
  5643. "physicalLocation": {
  5644. "artifactLocation": {
  5645. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5646. },
  5647. "region": {
  5648. "startLine": 1993,
  5649. "startColumn": 54
  5650. }
  5651. },
  5652. "message": {
  5653. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  5654. }
  5655. },
  5656. "kinds": [
  5657. "branch"
  5658. ],
  5659. "importance": "important"
  5660. },
  5661. {
  5662. "location": {
  5663. "physicalLocation": {
  5664. "artifactLocation": {
  5665. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5666. },
  5667. "region": {
  5668. "startLine": 1998,
  5669. "startColumn": 19
  5670. }
  5671. },
  5672. "message": {
  5673. "text": "In diese Verzweigung eintreten (Annahme: \"j==0\")"
  5674. }
  5675. },
  5676. "kinds": [
  5677. "branch"
  5678. ],
  5679. "importance": "important"
  5680. },
  5681. {
  5682. "location": {
  5683. "physicalLocation": {
  5684. "artifactLocation": {
  5685. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5686. },
  5687. "region": {
  5688. "startLine": 1999,
  5689. "startColumn": 31
  5690. }
  5691. }
  5692. },
  5693. "importance": "unimportant"
  5694. },
  5695. {
  5696. "location": {
  5697. "physicalLocation": {
  5698. "artifactLocation": {
  5699. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5700. },
  5701. "region": {
  5702. "startLine": 2000,
  5703. "startColumn": 22
  5704. }
  5705. }
  5706. },
  5707. "importance": "unimportant"
  5708. },
  5709. {
  5710. "location": {
  5711. "physicalLocation": {
  5712. "artifactLocation": {
  5713. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5714. },
  5715. "region": {
  5716. "startLine": 2004,
  5717. "startColumn": 23
  5718. }
  5719. }
  5720. },
  5721. "importance": "unimportant"
  5722. },
  5723. {
  5724. "location": {
  5725. "physicalLocation": {
  5726. "artifactLocation": {
  5727. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5728. },
  5729. "region": {
  5730. "startLine": 2010,
  5731. "startColumn": 45
  5732. }
  5733. },
  5734. "message": {
  5735. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  5736. }
  5737. },
  5738. "kinds": [
  5739. "branch"
  5740. ],
  5741. "importance": "important"
  5742. },
  5743. {
  5744. "location": {
  5745. "physicalLocation": {
  5746. "artifactLocation": {
  5747. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5748. },
  5749. "region": {
  5750. "startLine": 2015,
  5751. "startColumn": 17
  5752. }
  5753. }
  5754. },
  5755. "importance": "unimportant"
  5756. },
  5757. {
  5758. "location": {
  5759. "physicalLocation": {
  5760. "artifactLocation": {
  5761. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5762. },
  5763. "region": {
  5764. "startLine": 2016,
  5765. "startColumn": 15
  5766. }
  5767. }
  5768. },
  5769. "importance": "unimportant"
  5770. },
  5771. {
  5772. "location": {
  5773. "physicalLocation": {
  5774. "artifactLocation": {
  5775. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5776. },
  5777. "region": {
  5778. "startLine": 2017,
  5779. "startColumn": 20
  5780. }
  5781. }
  5782. },
  5783. "importance": "unimportant"
  5784. },
  5785. {
  5786. "location": {
  5787. "physicalLocation": {
  5788. "artifactLocation": {
  5789. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5790. },
  5791. "region": {
  5792. "startLine": 2017,
  5793. "startColumn": 27
  5794. }
  5795. },
  5796. "message": {
  5797. "text": "Diese Schleife überspringen (Annahme: \"k<n\" ist false)"
  5798. }
  5799. },
  5800. "kinds": [
  5801. "branch"
  5802. ],
  5803. "importance": "important"
  5804. },
  5805. {
  5806. "location": {
  5807. "physicalLocation": {
  5808. "artifactLocation": {
  5809. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5810. },
  5811. "region": {
  5812. "startLine": 2031,
  5813. "startColumn": 23
  5814. }
  5815. }
  5816. },
  5817. "importance": "unimportant"
  5818. },
  5819. {
  5820. "location": {
  5821. "physicalLocation": {
  5822. "artifactLocation": {
  5823. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5824. },
  5825. "region": {
  5826. "startLine": 2034,
  5827. "startColumn": 19
  5828. }
  5829. },
  5830. "message": {
  5831. "text": "In diese Verzweigung eintreten (Annahme: \"j==0\")"
  5832. }
  5833. },
  5834. "kinds": [
  5835. "branch"
  5836. ],
  5837. "importance": "important"
  5838. },
  5839. {
  5840. "location": {
  5841. "physicalLocation": {
  5842. "artifactLocation": {
  5843. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5844. },
  5845. "region": {
  5846. "startLine": 2035,
  5847. "startColumn": 60
  5848. }
  5849. },
  5850. "message": {
  5851. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  5852. }
  5853. },
  5854. "kinds": [
  5855. "branch"
  5856. ],
  5857. "importance": "important"
  5858. },
  5859. {
  5860. "location": {
  5861. "physicalLocation": {
  5862. "artifactLocation": {
  5863. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5864. },
  5865. "region": {
  5866. "startLine": 2054,
  5867. "startColumn": 24
  5868. }
  5869. }
  5870. },
  5871. "importance": "unimportant"
  5872. },
  5873. {
  5874. "location": {
  5875. "physicalLocation": {
  5876. "artifactLocation": {
  5877. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5878. },
  5879. "region": {
  5880. "startLine": 2056,
  5881. "startColumn": 23
  5882. }
  5883. }
  5884. },
  5885. "importance": "unimportant"
  5886. },
  5887. {
  5888. "location": {
  5889. "physicalLocation": {
  5890. "artifactLocation": {
  5891. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5892. },
  5893. "region": {
  5894. "startLine": 2057,
  5895. "startColumn": 23
  5896. }
  5897. }
  5898. },
  5899. "importance": "unimportant"
  5900. },
  5901. {
  5902. "location": {
  5903. "physicalLocation": {
  5904. "artifactLocation": {
  5905. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5906. },
  5907. "region": {
  5908. "startLine": 1992,
  5909. "startColumn": 30
  5910. }
  5911. }
  5912. },
  5913. "importance": "unimportant"
  5914. },
  5915. {
  5916. "location": {
  5917. "physicalLocation": {
  5918. "artifactLocation": {
  5919. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5920. },
  5921. "region": {
  5922. "startLine": 1992,
  5923. "startColumn": 23
  5924. }
  5925. },
  5926. "message": {
  5927. "text": "Diese Schleife fortsetzen (Annahme: \"j<nb\")"
  5928. }
  5929. },
  5930. "kinds": [
  5931. "branch"
  5932. ],
  5933. "importance": "important"
  5934. },
  5935. {
  5936. "location": {
  5937. "physicalLocation": {
  5938. "artifactLocation": {
  5939. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5940. },
  5941. "region": {
  5942. "startLine": 1993,
  5943. "startColumn": 54
  5944. }
  5945. },
  5946. "message": {
  5947. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  5948. }
  5949. },
  5950. "kinds": [
  5951. "branch"
  5952. ],
  5953. "importance": "important"
  5954. },
  5955. {
  5956. "location": {
  5957. "physicalLocation": {
  5958. "artifactLocation": {
  5959. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5960. },
  5961. "region": {
  5962. "startLine": 1998,
  5963. "startColumn": 19
  5964. }
  5965. },
  5966. "message": {
  5967. "text": "Diese Verzweigung überspringen (Annahme: \"j==0\" ist false)"
  5968. }
  5969. },
  5970. "kinds": [
  5971. "branch"
  5972. ],
  5973. "importance": "important"
  5974. },
  5975. {
  5976. "location": {
  5977. "physicalLocation": {
  5978. "artifactLocation": {
  5979. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5980. },
  5981. "region": {
  5982. "startLine": 2002,
  5983. "startColumn": 31
  5984. }
  5985. }
  5986. },
  5987. "importance": "unimportant"
  5988. },
  5989. {
  5990. "location": {
  5991. "physicalLocation": {
  5992. "artifactLocation": {
  5993. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  5994. },
  5995. "region": {
  5996. "startLine": 2004,
  5997. "startColumn": 23
  5998. }
  5999. }
  6000. },
  6001. "importance": "unimportant"
  6002. },
  6003. {
  6004. "location": {
  6005. "physicalLocation": {
  6006. "artifactLocation": {
  6007. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6008. },
  6009. "region": {
  6010. "startLine": 2010,
  6011. "startColumn": 45
  6012. }
  6013. },
  6014. "message": {
  6015. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  6016. }
  6017. },
  6018. "kinds": [
  6019. "branch"
  6020. ],
  6021. "importance": "important"
  6022. },
  6023. {
  6024. "location": {
  6025. "physicalLocation": {
  6026. "artifactLocation": {
  6027. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6028. },
  6029. "region": {
  6030. "startLine": 2015,
  6031. "startColumn": 17
  6032. }
  6033. }
  6034. },
  6035. "importance": "unimportant"
  6036. },
  6037. {
  6038. "location": {
  6039. "physicalLocation": {
  6040. "artifactLocation": {
  6041. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6042. },
  6043. "region": {
  6044. "startLine": 2016,
  6045. "startColumn": 15
  6046. }
  6047. }
  6048. },
  6049. "importance": "unimportant"
  6050. },
  6051. {
  6052. "location": {
  6053. "physicalLocation": {
  6054. "artifactLocation": {
  6055. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6056. },
  6057. "region": {
  6058. "startLine": 2017,
  6059. "startColumn": 20
  6060. }
  6061. }
  6062. },
  6063. "importance": "unimportant"
  6064. },
  6065. {
  6066. "location": {
  6067. "physicalLocation": {
  6068. "artifactLocation": {
  6069. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6070. },
  6071. "region": {
  6072. "startLine": 2017,
  6073. "startColumn": 27
  6074. }
  6075. },
  6076. "message": {
  6077. "text": "Diese Schleife überspringen (Annahme: \"k<n\" ist false)"
  6078. }
  6079. },
  6080. "kinds": [
  6081. "branch"
  6082. ],
  6083. "importance": "important"
  6084. },
  6085. {
  6086. "location": {
  6087. "physicalLocation": {
  6088. "artifactLocation": {
  6089. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6090. },
  6091. "region": {
  6092. "startLine": 2031,
  6093. "startColumn": 23
  6094. }
  6095. }
  6096. },
  6097. "importance": "unimportant"
  6098. },
  6099. {
  6100. "location": {
  6101. "physicalLocation": {
  6102. "artifactLocation": {
  6103. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6104. },
  6105. "region": {
  6106. "startLine": 2034,
  6107. "startColumn": 19
  6108. }
  6109. },
  6110. "message": {
  6111. "text": "Diese Verzweigung überspringen (Annahme: \"j==0\" ist false)"
  6112. }
  6113. },
  6114. "kinds": [
  6115. "branch"
  6116. ],
  6117. "importance": "important"
  6118. },
  6119. {
  6120. "location": {
  6121. "physicalLocation": {
  6122. "artifactLocation": {
  6123. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6124. },
  6125. "region": {
  6126. "startLine": 2043,
  6127. "startColumn": 39
  6128. }
  6129. },
  6130. "message": {
  6131. "text": "\"fpy\" ist ein Eingabe-/Ausgabeargument für \"locateOutsideSeedPixel\" (in Zeile 298 deklariert)"
  6132. }
  6133. },
  6134. "kinds": [
  6135. "declaration"
  6136. ],
  6137. "importance": "important"
  6138. },
  6139. {
  6140. "location": {
  6141. "physicalLocation": {
  6142. "artifactLocation": {
  6143. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6144. },
  6145. "region": {
  6146. "startLine": 2047,
  6147. "startColumn": 22
  6148. }
  6149. }
  6150. },
  6151. "importance": "unimportant"
  6152. },
  6153. {
  6154. "location": {
  6155. "physicalLocation": {
  6156. "artifactLocation": {
  6157. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6158. },
  6159. "region": {
  6160. "startLine": 2048,
  6161. "startColumn": 28
  6162. }
  6163. }
  6164. },
  6165. "importance": "unimportant"
  6166. },
  6167. {
  6168. "location": {
  6169. "physicalLocation": {
  6170. "artifactLocation": {
  6171. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6172. },
  6173. "region": {
  6174. "startLine": 2049,
  6175. "startColumn": 26
  6176. }
  6177. }
  6178. },
  6179. "importance": "unimportant"
  6180. },
  6181. {
  6182. "location": {
  6183. "physicalLocation": {
  6184. "artifactLocation": {
  6185. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6186. },
  6187. "region": {
  6188. "startLine": 2050,
  6189. "startColumn": 34
  6190. }
  6191. }
  6192. },
  6193. "importance": "unimportant"
  6194. },
  6195. {
  6196. "location": {
  6197. "physicalLocation": {
  6198. "artifactLocation": {
  6199. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  6200. },
  6201. "region": {
  6202. "startLine": 2043,
  6203. "startColumn": 45
  6204. }
  6205. },
  6206. "message": {
  6207. "text": "\"fpy\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  6208. }
  6209. },
  6210. "kinds": [
  6211. "usage"
  6212. ],
  6213. "importance": "essential"
  6214. }
  6215. ]
  6216. }
  6217. ]
  6218. }
  6219. ]
  6220. }
  6221. ],
  6222. "tool": {
  6223. "driver": {
  6224. "name": "PREfast",
  6225. "fullName": "PREfast Code Analysis",
  6226. "version": "14.29.30159.0",
  6227. "informationUri": "https://aka.ms/cpp/ca"
  6228. }
  6229. },
  6230. "invocations": [
  6231. {
  6232. "commandLine": "D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\c1.dll -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF62CE9FC60 -il C:\\Users\\wruser\\AppData\\Local\\Temp\\_CL_e53cd616ast -typedil -f ..\\..\\thirdparty\\leptonica\\src\\ccbord.c -Ze -D_MSC_EXTENSIONS -Zp16 -pc \\:/ -D_MSC_VER=1929 -D_MSC_FULL_VER=192930159 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\include -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\leptonica\\src -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\scripts\\tesseract -nologo -W 3 -diagnostics:column -GF -Og -Ot -Oy -Oi -ltcg -DCODE_ANALYSIS -DHAVE_LEPTONICA -DLEPTONICA_INTERCEPT_ALLOC=1 -DHAVE_LIBPNG=0 -DHAVE_LIBTIFF=0 -DHAVE_LIBJPEG=0 -DHAVE_LIBZ=0 -DHAVE_LIBGIF=0 -DHAVE_LIBUNGIF=0 -DHAVE_LIBWEBP=0 -DHAVE_LIBWEBP_ANIM=0 -DHAVE_LIBJP2K=0 -D_CRT_SECURE_NO_WARNINGS -DNDEBUG -D_LIB -D_UNICODE -D_MT -D_DLL -GS -D_M_FP_PRECISE -Fox64\\Release\\libleptonica\\ccbord.obj -FdC:\\Users\\wruser\\source\\repos\\SharpMuPDF\\x64\\Release\\libleptonica.pdb -external:W 3 -Gd -wd 4018 -wd 4100 -wd 4101 -wd 4244 -wd 4200 -wd 4267 -wd 4305 -analyze:projectdirectory C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\platform\\win32 -analyze:rulesetdirectory ;D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\\\Rule Sets; -analyze:ruleset D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:quiet -analyze:plugin D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\EspXEngine.dll -FC -errorreport:prompt -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -external:I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -external:I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um",
  6233. "executionSuccessful": true
  6234. }
  6235. ],
  6236. "artifacts": [
  6237. {
  6238. "location": {
  6239. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen4.c"
  6240. },
  6241. "roles": [
  6242. "analysisTarget"
  6243. ],
  6244. "hashes": {
  6245. "md5": "3a82f1ac44975b5317cf5d04fa947c01"
  6246. }
  6247. },
  6248. {
  6249. "location": {
  6250. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/allheaders.h"
  6251. },
  6252. "hashes": {
  6253. "md5": "999d534a4ad60a2b7511196f8e6509e4"
  6254. }
  6255. },
  6256. {
  6257. "location": {
  6258. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/alltypes.h"
  6259. },
  6260. "hashes": {
  6261. "md5": "a53441277a26b8f0bb926cb17df2dfb7"
  6262. }
  6263. },
  6264. {
  6265. "location": {
  6266. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/tesseract/endianness.h"
  6267. },
  6268. "hashes": {
  6269. "md5": "c5b34010ae58ee994fb431b8736f6f4c"
  6270. }
  6271. },
  6272. {
  6273. "location": {
  6274. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/environ.h"
  6275. },
  6276. "hashes": {
  6277. "md5": "f12002e24a0542a8b820943238c03777"
  6278. }
  6279. },
  6280. {
  6281. "location": {
  6282. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array.h"
  6283. },
  6284. "hashes": {
  6285. "md5": "905c3a077932844148e6ce1a082ad3fd"
  6286. }
  6287. },
  6288. {
  6289. "location": {
  6290. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.h"
  6291. },
  6292. "hashes": {
  6293. "md5": "9698e12ada03098f0d12a09c12cf6063"
  6294. }
  6295. },
  6296. {
  6297. "location": {
  6298. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.h"
  6299. },
  6300. "hashes": {
  6301. "md5": "a67f5cea1a1d468a3c082936a3c6ceae"
  6302. }
  6303. },
  6304. {
  6305. "location": {
  6306. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.h"
  6307. },
  6308. "hashes": {
  6309. "md5": "b4a5a51c54ae3ecf0da810f807a29c83"
  6310. }
  6311. },
  6312. {
  6313. "location": {
  6314. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.h"
  6315. },
  6316. "hashes": {
  6317. "md5": "c1df1f5c4859fcff277e25e2af485e32"
  6318. }
  6319. },
  6320. {
  6321. "location": {
  6322. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptra.h"
  6323. },
  6324. "hashes": {
  6325. "md5": "09b92e82a1ea998e1f7e4023c008cf51"
  6326. }
  6327. },
  6328. {
  6329. "location": {
  6330. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/queue.h"
  6331. },
  6332. "hashes": {
  6333. "md5": "ceded2bcd4bc2c553683c2643f69e6a5"
  6334. }
  6335. },
  6336. {
  6337. "location": {
  6338. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rbtree.h"
  6339. },
  6340. "hashes": {
  6341. "md5": "803860fffdd81a3fc3fff30294c8f8cb"
  6342. }
  6343. },
  6344. {
  6345. "location": {
  6346. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stack.h"
  6347. },
  6348. "hashes": {
  6349. "md5": "0740173ae3e4e7de5f4c6fe821a4f0e7"
  6350. }
  6351. },
  6352. {
  6353. "location": {
  6354. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.h"
  6355. },
  6356. "hashes": {
  6357. "md5": "dcb43ea7a43e1fddf264fe501878db3d"
  6358. }
  6359. },
  6360. {
  6361. "location": {
  6362. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.h"
  6363. },
  6364. "hashes": {
  6365. "md5": "e34a65325b94bfa5d1dca2f9424ca1f0"
  6366. }
  6367. },
  6368. {
  6369. "location": {
  6370. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord.h"
  6371. },
  6372. "hashes": {
  6373. "md5": "90250b263699310ce40909628dbd7758"
  6374. }
  6375. },
  6376. {
  6377. "location": {
  6378. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorfill.h"
  6379. },
  6380. "hashes": {
  6381. "md5": "c9cf5349852bf9054e7f3c5bbafac76e"
  6382. }
  6383. },
  6384. {
  6385. "location": {
  6386. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp.h"
  6387. },
  6388. "hashes": {
  6389. "md5": "493b17891572abea870917ab41bf12c6"
  6390. }
  6391. },
  6392. {
  6393. "location": {
  6394. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.h"
  6395. },
  6396. "hashes": {
  6397. "md5": "55cf40c06fd537d7b8714aaf1f7a0042"
  6398. }
  6399. },
  6400. {
  6401. "location": {
  6402. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/imageio.h"
  6403. },
  6404. "hashes": {
  6405. "md5": "f517e3d907fee1ec4c974fad7dfdb29d"
  6406. }
  6407. },
  6408. {
  6409. "location": {
  6410. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jbclass.h"
  6411. },
  6412. "hashes": {
  6413. "md5": "c922deeb8eb844a7a2260f9c0a709218"
  6414. }
  6415. },
  6416. {
  6417. "location": {
  6418. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morph.h"
  6419. },
  6420. "hashes": {
  6421. "md5": "44855c4ddac6a28583d89947fcdbfdfc"
  6422. }
  6423. },
  6424. {
  6425. "location": {
  6426. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix.h"
  6427. },
  6428. "hashes": {
  6429. "md5": "1fc6f88f9c79b5158469904b66645f7d"
  6430. }
  6431. },
  6432. {
  6433. "location": {
  6434. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/recog.h"
  6435. },
  6436. "hashes": {
  6437. "md5": "f49b37b951f9036fb2dcf726b741db4e"
  6438. }
  6439. },
  6440. {
  6441. "location": {
  6442. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/regutils.h"
  6443. },
  6444. "hashes": {
  6445. "md5": "fe7a3db017220d34590fd29869e5d61c"
  6446. }
  6447. },
  6448. {
  6449. "location": {
  6450. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stringcode.h"
  6451. },
  6452. "hashes": {
  6453. "md5": "94fce55340931aded34d6d7fd60d842e"
  6454. }
  6455. },
  6456. {
  6457. "location": {
  6458. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sudoku.h"
  6459. },
  6460. "hashes": {
  6461. "md5": "fb101a2c192580933be1b8236c2bdc15"
  6462. }
  6463. },
  6464. {
  6465. "location": {
  6466. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/watershed.h"
  6467. },
  6468. "hashes": {
  6469. "md5": "44a71dd892c2fab6459227f7bcc400ee"
  6470. }
  6471. },
  6472. {
  6473. "location": {
  6474. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen3.c"
  6475. },
  6476. "roles": [
  6477. "analysisTarget"
  6478. ],
  6479. "hashes": {
  6480. "md5": "b48614e975c09a03547e759b911f5359"
  6481. }
  6482. },
  6483. {
  6484. "location": {
  6485. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen2.c"
  6486. },
  6487. "roles": [
  6488. "analysisTarget"
  6489. ],
  6490. "hashes": {
  6491. "md5": "8ad6891f2edce3383af6916769c41602"
  6492. }
  6493. },
  6494. {
  6495. "location": {
  6496. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen1.c"
  6497. },
  6498. "roles": [
  6499. "analysisTarget"
  6500. ],
  6501. "hashes": {
  6502. "md5": "b7bcdd2390111aecc3149c70911a9db2"
  6503. }
  6504. },
  6505. {
  6506. "location": {
  6507. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmpiostub.c"
  6508. },
  6509. "roles": [
  6510. "analysisTarget"
  6511. ],
  6512. "hashes": {
  6513. "md5": "fe53e17707c01ad1ef2333752ebc32ee"
  6514. }
  6515. },
  6516. {
  6517. "location": {
  6518. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/bmpio.c"
  6519. },
  6520. "roles": [
  6521. "analysisTarget",
  6522. "resultFile"
  6523. ],
  6524. "hashes": {
  6525. "md5": "367f3081ffba0952522913b49b13bf52"
  6526. }
  6527. },
  6528. {
  6529. "location": {
  6530. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix_internal.h"
  6531. },
  6532. "hashes": {
  6533. "md5": "4dd89382186e6b211b4078679810a19e"
  6534. }
  6535. },
  6536. {
  6537. "location": {
  6538. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmp.h"
  6539. },
  6540. "hashes": {
  6541. "md5": "942e4ba8687e01b1fe5afae65245bd29"
  6542. }
  6543. },
  6544. {
  6545. "location": {
  6546. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.c"
  6547. },
  6548. "roles": [
  6549. "analysisTarget"
  6550. ],
  6551. "hashes": {
  6552. "md5": "2f5d274fa401e05d5d15d9e58a7ed8a5"
  6553. }
  6554. },
  6555. {
  6556. "location": {
  6557. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmfdata.h"
  6558. },
  6559. "hashes": {
  6560. "md5": "4ded82c05fb39404bb67e686cd38b9cf"
  6561. }
  6562. },
  6563. {
  6564. "location": {
  6565. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/blend.c"
  6566. },
  6567. "roles": [
  6568. "analysisTarget",
  6569. "resultFile"
  6570. ],
  6571. "hashes": {
  6572. "md5": "f734d4b17d7b51568aa083f8444a8e7d"
  6573. }
  6574. },
  6575. {
  6576. "location": {
  6577. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binreduce.c"
  6578. },
  6579. "roles": [
  6580. "analysisTarget"
  6581. ],
  6582. "hashes": {
  6583. "md5": "a6bbc62580de9a69daca0ed4a05782ba"
  6584. }
  6585. },
  6586. {
  6587. "location": {
  6588. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binexpand.c"
  6589. },
  6590. "roles": [
  6591. "analysisTarget"
  6592. ],
  6593. "hashes": {
  6594. "md5": "a91e32559d5d0814d80b73b5bc7df24b"
  6595. }
  6596. },
  6597. {
  6598. "location": {
  6599. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binarize.c"
  6600. },
  6601. "roles": [
  6602. "analysisTarget"
  6603. ],
  6604. "hashes": {
  6605. "md5": "02c1761dcc6ab4bf416e6055f672ab07"
  6606. }
  6607. },
  6608. {
  6609. "location": {
  6610. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilinear.c"
  6611. },
  6612. "roles": [
  6613. "analysisTarget"
  6614. ],
  6615. "hashes": {
  6616. "md5": "4a09fe363bcb37df9bb1cd9adbf0c91a"
  6617. }
  6618. },
  6619. {
  6620. "location": {
  6621. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.c"
  6622. },
  6623. "roles": [
  6624. "analysisTarget"
  6625. ],
  6626. "hashes": {
  6627. "md5": "bc1af17cf793ac23886176cb0d23b029"
  6628. }
  6629. },
  6630. {
  6631. "location": {
  6632. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.h"
  6633. },
  6634. "hashes": {
  6635. "md5": "d3078c8d7a38ea07d93a58f8a4982a8d"
  6636. }
  6637. },
  6638. {
  6639. "location": {
  6640. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.c"
  6641. },
  6642. "roles": [
  6643. "analysisTarget"
  6644. ],
  6645. "hashes": {
  6646. "md5": "8fd7f505a82a8b97b29e52618397178d"
  6647. }
  6648. },
  6649. {
  6650. "location": {
  6651. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/baseline.c"
  6652. },
  6653. "roles": [
  6654. "analysisTarget",
  6655. "resultFile"
  6656. ],
  6657. "hashes": {
  6658. "md5": "a4f7bc8214c6a7c7592a2e29d78addc1"
  6659. }
  6660. },
  6661. {
  6662. "location": {
  6663. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.c"
  6664. },
  6665. "roles": [
  6666. "analysisTarget"
  6667. ],
  6668. "hashes": {
  6669. "md5": "137a526c992e6e6683cf2b6ece5a016d"
  6670. }
  6671. },
  6672. {
  6673. "location": {
  6674. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affinecompose.c"
  6675. },
  6676. "roles": [
  6677. "analysisTarget"
  6678. ],
  6679. "hashes": {
  6680. "md5": "020190a9b3f19478dfb5484f3d4fc1e5"
  6681. }
  6682. },
  6683. {
  6684. "location": {
  6685. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affine.c"
  6686. },
  6687. "roles": [
  6688. "analysisTarget"
  6689. ],
  6690. "hashes": {
  6691. "md5": "8cea6c30ebe9cbe0f61f7482e81b4c5c"
  6692. }
  6693. },
  6694. {
  6695. "location": {
  6696. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/adaptmap.c"
  6697. },
  6698. "roles": [
  6699. "analysisTarget"
  6700. ],
  6701. "hashes": {
  6702. "md5": "69c4c232ba768de8b5d9de5e0d23b399"
  6703. }
  6704. },
  6705. {
  6706. "location": {
  6707. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.c"
  6708. },
  6709. "roles": [
  6710. "analysisTarget"
  6711. ],
  6712. "hashes": {
  6713. "md5": "7f73dd56f3cfed6d45d19fd442396938"
  6714. }
  6715. },
  6716. {
  6717. "location": {
  6718. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.h"
  6719. },
  6720. "hashes": {
  6721. "md5": "271e50e32565a028dadd3554dc7d6be9"
  6722. }
  6723. },
  6724. {
  6725. "location": {
  6726. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz.h"
  6727. },
  6728. "hashes": {
  6729. "md5": "c1da725222ed64f4094c94f9ec5fa9d3"
  6730. }
  6731. },
  6732. {
  6733. "location": {
  6734. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/version.h"
  6735. },
  6736. "hashes": {
  6737. "md5": "49b087287cd81a61255c9afad5a04a0e"
  6738. }
  6739. },
  6740. {
  6741. "location": {
  6742. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/config.h"
  6743. },
  6744. "hashes": {
  6745. "md5": "8152555cd3c484684047fd1c533eb1a6"
  6746. }
  6747. },
  6748. {
  6749. "location": {
  6750. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/system.h"
  6751. },
  6752. "hashes": {
  6753. "md5": "90ae89bc0bb247c30f11092380a6bf84"
  6754. }
  6755. },
  6756. {
  6757. "location": {
  6758. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/export.h"
  6759. },
  6760. "hashes": {
  6761. "md5": "9392a759e17aa12d7d4516ab296a9110"
  6762. }
  6763. },
  6764. {
  6765. "location": {
  6766. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/memento.h"
  6767. },
  6768. "hashes": {
  6769. "md5": "09ba15c0fd78518e062db9266c4a1239"
  6770. }
  6771. },
  6772. {
  6773. "location": {
  6774. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/track-usage.h"
  6775. },
  6776. "hashes": {
  6777. "md5": "9c2721d2c03d4b6e071d4c291e4f8eec"
  6778. }
  6779. },
  6780. {
  6781. "location": {
  6782. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/context.h"
  6783. },
  6784. "hashes": {
  6785. "md5": "0a8420b8805e435b64f295b16cab53af"
  6786. }
  6787. },
  6788. {
  6789. "location": {
  6790. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/geometry.h"
  6791. },
  6792. "hashes": {
  6793. "md5": "b90a31a4dca86a00ae7644b0735a3899"
  6794. }
  6795. },
  6796. {
  6797. "location": {
  6798. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output.h"
  6799. },
  6800. "hashes": {
  6801. "md5": "f73558b9d27504499a5a45e8f3a3584a"
  6802. }
  6803. },
  6804. {
  6805. "location": {
  6806. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/buffer.h"
  6807. },
  6808. "hashes": {
  6809. "md5": "6fc8c6b8b9a2692519a1d0e505f71c6e"
  6810. }
  6811. },
  6812. {
  6813. "location": {
  6814. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/string-util.h"
  6815. },
  6816. "hashes": {
  6817. "md5": "4f84321fffde964fbdfa179e97b1fb5b"
  6818. }
  6819. },
  6820. {
  6821. "location": {
  6822. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/stream.h"
  6823. },
  6824. "hashes": {
  6825. "md5": "17262319f59df230360c31bff22506f4"
  6826. }
  6827. },
  6828. {
  6829. "location": {
  6830. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/log.h"
  6831. },
  6832. "hashes": {
  6833. "md5": "fdce0ca431e1f40c09081052f1b739cb"
  6834. }
  6835. },
  6836. {
  6837. "location": {
  6838. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/crypt.h"
  6839. },
  6840. "hashes": {
  6841. "md5": "9ffc8e340c06f2d28aa62b6fcd35dc5d"
  6842. }
  6843. },
  6844. {
  6845. "location": {
  6846. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/getopt.h"
  6847. },
  6848. "hashes": {
  6849. "md5": "e47118058134aec927847ca9dae5d390"
  6850. }
  6851. },
  6852. {
  6853. "location": {
  6854. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/hash.h"
  6855. },
  6856. "hashes": {
  6857. "md5": "d9b655ab558a40c18e24c7cdddeab1fc"
  6858. }
  6859. },
  6860. {
  6861. "location": {
  6862. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pool.h"
  6863. },
  6864. "hashes": {
  6865. "md5": "2f150c59f73344040a7de6455c00529e"
  6866. }
  6867. },
  6868. {
  6869. "location": {
  6870. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/tree.h"
  6871. },
  6872. "hashes": {
  6873. "md5": "66441b22b31d2cc979eb50d828de8d89"
  6874. }
  6875. },
  6876. {
  6877. "location": {
  6878. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bidi.h"
  6879. },
  6880. "hashes": {
  6881. "md5": "b3f22e9d6b6250f2a9dfd4c1620af41d"
  6882. }
  6883. },
  6884. {
  6885. "location": {
  6886. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/xml.h"
  6887. },
  6888. "hashes": {
  6889. "md5": "9e6cf72f1f3c757d8956f19631d1f942"
  6890. }
  6891. },
  6892. {
  6893. "location": {
  6894. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/archive.h"
  6895. },
  6896. "hashes": {
  6897. "md5": "fe3a9fa4f6093e521afe5b0d4a214e89"
  6898. }
  6899. },
  6900. {
  6901. "location": {
  6902. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/json.h"
  6903. },
  6904. "hashes": {
  6905. "md5": "1ccd7f1e2c3cf9db156761b2341941bb"
  6906. }
  6907. },
  6908. {
  6909. "location": {
  6910. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compress.h"
  6911. },
  6912. "hashes": {
  6913. "md5": "870b86535307b1bcf48a05cc86bac4f6"
  6914. }
  6915. },
  6916. {
  6917. "location": {
  6918. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pixmap.h"
  6919. },
  6920. "hashes": {
  6921. "md5": "4a2994ca7e320d46c91af9462864e472"
  6922. }
  6923. },
  6924. {
  6925. "location": {
  6926. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/store.h"
  6927. },
  6928. "hashes": {
  6929. "md5": "613e60235eba9e2c0fe6735fbcbf444d"
  6930. }
  6931. },
  6932. {
  6933. "location": {
  6934. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/separation.h"
  6935. },
  6936. "hashes": {
  6937. "md5": "948f2a79178edd5a86cab9b357cc8f84"
  6938. }
  6939. },
  6940. {
  6941. "location": {
  6942. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/color.h"
  6943. },
  6944. "hashes": {
  6945. "md5": "c394579670ed653192ccdf07cc810543"
  6946. }
  6947. },
  6948. {
  6949. "location": {
  6950. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compressed-buffer.h"
  6951. },
  6952. "hashes": {
  6953. "md5": "f0ad50536d7884e3d221498388a145a1"
  6954. }
  6955. },
  6956. {
  6957. "location": {
  6958. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/filter.h"
  6959. },
  6960. "hashes": {
  6961. "md5": "a20437fde476b45123005b54567b8b3c"
  6962. }
  6963. },
  6964. {
  6965. "location": {
  6966. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap.h"
  6967. },
  6968. "hashes": {
  6969. "md5": "1cbe01acfade2baf416ab5be1bd1907e"
  6970. }
  6971. },
  6972. {
  6973. "location": {
  6974. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap-imp.h"
  6975. },
  6976. "hashes": {
  6977. "md5": "9923f50e47c46bd4e02747da6de32946"
  6978. }
  6979. },
  6980. {
  6981. "location": {
  6982. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/image.h"
  6983. },
  6984. "hashes": {
  6985. "md5": "a987413ff35bef8ce2048369564be0e0"
  6986. }
  6987. },
  6988. {
  6989. "location": {
  6990. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bitmap.h"
  6991. },
  6992. "hashes": {
  6993. "md5": "0e6ee78ac3a456106ea3ddca63ef5e35"
  6994. }
  6995. },
  6996. {
  6997. "location": {
  6998. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/shade.h"
  6999. },
  7000. "hashes": {
  7001. "md5": "c06b062bd0326fa40b071527b257ae24"
  7002. }
  7003. },
  7004. {
  7005. "location": {
  7006. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/font.h"
  7007. },
  7008. "hashes": {
  7009. "md5": "b667092834a21c0abe97b2817ace34a7"
  7010. }
  7011. },
  7012. {
  7013. "location": {
  7014. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/path.h"
  7015. },
  7016. "hashes": {
  7017. "md5": "200da6c866aa0a7faec7f24f176e47e9"
  7018. }
  7019. },
  7020. {
  7021. "location": {
  7022. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/text.h"
  7023. },
  7024. "hashes": {
  7025. "md5": "d8f8e0890cc682b0974ec3f779260f6e"
  7026. }
  7027. },
  7028. {
  7029. "location": {
  7030. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph.h"
  7031. },
  7032. "hashes": {
  7033. "md5": "74fdb3bee7c6f25df43323008fcdf60a"
  7034. }
  7035. },
  7036. {
  7037. "location": {
  7038. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/device.h"
  7039. },
  7040. "hashes": {
  7041. "md5": "ba44b7292a72479dfe60b62352e57fd5"
  7042. }
  7043. },
  7044. {
  7045. "location": {
  7046. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/display-list.h"
  7047. },
  7048. "hashes": {
  7049. "md5": "4944d19bf380f14ccda5ced45ab04dcc"
  7050. }
  7051. },
  7052. {
  7053. "location": {
  7054. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/structured-text.h"
  7055. },
  7056. "hashes": {
  7057. "md5": "fdd5507292d57da0c3c2ee591f5f0d08"
  7058. }
  7059. },
  7060. {
  7061. "location": {
  7062. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/types.h"
  7063. },
  7064. "hashes": {
  7065. "md5": "385688b131d3b981c11fefca1c6bd08f"
  7066. }
  7067. },
  7068. {
  7069. "location": {
  7070. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/transition.h"
  7071. },
  7072. "hashes": {
  7073. "md5": "45a1a3da16cfa7a1135ed97b151d59e5"
  7074. }
  7075. },
  7076. {
  7077. "location": {
  7078. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph-cache.h"
  7079. },
  7080. "hashes": {
  7081. "md5": "f8a51df4e57ec830f97cefefd04beb21"
  7082. }
  7083. },
  7084. {
  7085. "location": {
  7086. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/link.h"
  7087. },
  7088. "hashes": {
  7089. "md5": "e2beb74537ffa880d751627856f4ec2e"
  7090. }
  7091. },
  7092. {
  7093. "location": {
  7094. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/outline.h"
  7095. },
  7096. "hashes": {
  7097. "md5": "a4b090458246a9412f1822e8f69861e5"
  7098. }
  7099. },
  7100. {
  7101. "location": {
  7102. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/document.h"
  7103. },
  7104. "hashes": {
  7105. "md5": "d5dd17e54ecd7a0c4c420b7fba8bbbb8"
  7106. }
  7107. },
  7108. {
  7109. "location": {
  7110. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/util.h"
  7111. },
  7112. "hashes": {
  7113. "md5": "b52379b9e022798f7ffeb183e593355b"
  7114. }
  7115. },
  7116. {
  7117. "location": {
  7118. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/writer.h"
  7119. },
  7120. "hashes": {
  7121. "md5": "8f22433f8330cf7094af3c2c0221d1aa"
  7122. }
  7123. },
  7124. {
  7125. "location": {
  7126. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/band-writer.h"
  7127. },
  7128. "hashes": {
  7129. "md5": "cce70daf29f5059d81d3004bac3a529b"
  7130. }
  7131. },
  7132. {
  7133. "location": {
  7134. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/write-pixmap.h"
  7135. },
  7136. "hashes": {
  7137. "md5": "55a92a6277d51e8193cb9d68dbc04555"
  7138. }
  7139. },
  7140. {
  7141. "location": {
  7142. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output-svg.h"
  7143. },
  7144. "hashes": {
  7145. "md5": "562415573a8921b26596771d6c4c5c67"
  7146. }
  7147. },
  7148. {
  7149. "location": {
  7150. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story.h"
  7151. },
  7152. "hashes": {
  7153. "md5": "103650ee4814b1f96618672e45b766d4"
  7154. }
  7155. },
  7156. {
  7157. "location": {
  7158. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story-writer.h"
  7159. },
  7160. "hashes": {
  7161. "md5": "aaafb6cf4f48ade004e1d15d06eaffe7"
  7162. }
  7163. },
  7164. {
  7165. "location": {
  7166. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/deskew.h"
  7167. },
  7168. "hashes": {
  7169. "md5": "9599a8121baecccfd203d91c95561903"
  7170. }
  7171. },
  7172. {
  7173. "location": {
  7174. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/barcode.h"
  7175. },
  7176. "hashes": {
  7177. "md5": "58fc28d74fa337724ff70a29778ac6ed"
  7178. }
  7179. },
  7180. {
  7181. "location": {
  7182. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convertfiles.c"
  7183. },
  7184. "roles": [
  7185. "analysisTarget"
  7186. ],
  7187. "hashes": {
  7188. "md5": "724f5d1e2f686dc7a5f62ee87cd4b7c0"
  7189. }
  7190. },
  7191. {
  7192. "location": {
  7193. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/conncomp.c"
  7194. },
  7195. "roles": [
  7196. "analysisTarget"
  7197. ],
  7198. "hashes": {
  7199. "md5": "439795e422d51c02d86e41c5f2612cca"
  7200. }
  7201. },
  7202. {
  7203. "location": {
  7204. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/compare.c"
  7205. },
  7206. "roles": [
  7207. "analysisTarget"
  7208. ],
  7209. "hashes": {
  7210. "md5": "32a03abbd3ffed661bfab2965b017a8b"
  7211. }
  7212. },
  7213. {
  7214. "location": {
  7215. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorspace.c"
  7216. },
  7217. "roles": [
  7218. "analysisTarget"
  7219. ],
  7220. "hashes": {
  7221. "md5": "4f9001939678a369e7c84460dff9d21b"
  7222. }
  7223. },
  7224. {
  7225. "location": {
  7226. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorseg.c"
  7227. },
  7228. "roles": [
  7229. "analysisTarget",
  7230. "resultFile"
  7231. ],
  7232. "hashes": {
  7233. "md5": "1ab66c018aa504e6fee2bdca55a3da21"
  7234. }
  7235. },
  7236. {
  7237. "location": {
  7238. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorquant2.c"
  7239. },
  7240. "roles": [
  7241. "analysisTarget",
  7242. "resultFile"
  7243. ],
  7244. "hashes": {
  7245. "md5": "08cd6523f246d256d2e5b719eb667fd9"
  7246. }
  7247. },
  7248. {
  7249. "location": {
  7250. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorquant1.c"
  7251. },
  7252. "roles": [
  7253. "analysisTarget"
  7254. ],
  7255. "hashes": {
  7256. "md5": "f40f68bd9d4f0559471f4519d089341c"
  7257. }
  7258. },
  7259. {
  7260. "location": {
  7261. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormorph.c"
  7262. },
  7263. "roles": [
  7264. "analysisTarget"
  7265. ],
  7266. "hashes": {
  7267. "md5": "c7d2b1c8606d5cdc3213275c61eefc08"
  7268. }
  7269. },
  7270. {
  7271. "location": {
  7272. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormap.c"
  7273. },
  7274. "roles": [
  7275. "analysisTarget"
  7276. ],
  7277. "hashes": {
  7278. "md5": "07d58362026f2ee8c4c94a12a850cf55"
  7279. }
  7280. },
  7281. {
  7282. "location": {
  7283. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/coloring.c"
  7284. },
  7285. "roles": [
  7286. "analysisTarget"
  7287. ],
  7288. "hashes": {
  7289. "md5": "0b2cd914abafa50c0a5d70fe0d70bed0"
  7290. }
  7291. },
  7292. {
  7293. "location": {
  7294. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorcontent.c"
  7295. },
  7296. "roles": [
  7297. "analysisTarget"
  7298. ],
  7299. "hashes": {
  7300. "md5": "f323d957cfd0b4804277e990bddc1052"
  7301. }
  7302. },
  7303. {
  7304. "location": {
  7305. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/classapp.c"
  7306. },
  7307. "roles": [
  7308. "analysisTarget"
  7309. ],
  7310. "hashes": {
  7311. "md5": "031c0fa9ce910dbe883833475136f167"
  7312. }
  7313. },
  7314. {
  7315. "location": {
  7316. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  7317. },
  7318. "roles": [
  7319. "analysisTarget",
  7320. "resultFile"
  7321. ],
  7322. "hashes": {
  7323. "md5": "698cbb131be6752bb74a9863349ba9f7"
  7324. }
  7325. },
  7326. {
  7327. "location": {
  7328. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord_internal.h"
  7329. },
  7330. "hashes": {
  7331. "md5": "b4ffaa4ab3329f45a74769526364a5bd"
  7332. }
  7333. }
  7334. ]
  7335. }
  7336. ]
  7337. }