View main.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is me. | |
And they are here, my friend. |
View main.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
fmt.Printf("Hello\n") | |
} |
View false.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this is a test | |
func main() { | |
fmt.Printf("Hello") | |
} |
View main.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
fmt.Printf("Hello\n") | |
} |
View bundle.js
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
webpackJsonp([0], [, function(t, e, r) { | |
var n = r(6) | |
, i = r(36) | |
, o = r(27) | |
, a = r(28) | |
, s = r(37) | |
, u = function(t, e, r) { | |
var l, c, h, f, d = t & u.F, p = t & u.G, m = t & u.S, g = t & u.P, v = t & u.B, y = p ? n : m ? n[e] || (n[e] = {}) : (n[e] || {}).prototype, b = p ? i : i[e] || (i[e] = {}), _ = b.prototype || (b.prototype = {}); | |
p && (r = e); | |
for (l in r) |
View main.js
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
webpackJsonp([0], [, function(t, e, r) { | |
var n = r(6) | |
, i = r(36) | |
, o = r(27) | |
, a = r(28) | |
, s = r(37) | |
, u = function(t, e, r) { | |
var l, c, h, f, d = t & u.F, p = t & u.G, m = t & u.S, g = t & u.P, v = t & u.B, y = p ? n : m ? n[e] || (n[e] = {}) : (n[e] || {}).prototype, b = p ? i : i[e] || (i[e] = {}), _ = b.prototype || (b.prototype = {}); | |
p && (r = e); | |
for (l in r) |
View v2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"kind": "drive#fileList", | |
"etag": "\"dNzmxTQXf93-URXXV2e6HTjz4Uc\"", | |
"selfLink": "https://www.googleapis.com/drive/v2/files", | |
"nextPageToken": "~!!~AI9FV7TLkZbjkzrcrQWqhRUpOMAeA1WkjFDTn3zHXVv9Bigb-9iLCYw1O-ezzFljevtOfWIZHjy_rDWE0T7_taMq9ue72WfcfGr4r8VKaM-pqUFxxBP0o8rc8qCJPeQv_jatR0rlEjSnK8kw0WwyrsH5TniY5bdOrXh-_I1ikH26dtRCjTXQcQBAfaKhQapG63E5TNk4UdOcuvp3pGlIxKA7IP59ycgYEHFfGEN7cF3DUz9JnuCbjBjK3eS6XB1J8UqBVzgeL1kdRZo5j9lfMIC6sQHihLH9-haQR7pfqT6dbm-ffNtoCITzTuv4aCrP21Qbq5LqdzcZ", | |
"nextLink": "https://www.googleapis.com/drive/v2/files?pageToken=~!!~AI9FV7TLkZbjkzrcrQWqhRUpOMAeA1WkjFDTn3zHXVv9Bigb-9iLCYw1O-ezzFljevtOfWIZHjy_rDWE0T7_taMq9ue72WfcfGr4r8VKaM-pqUFxxBP0o8rc8qCJPeQv_jatR0rlEjSnK8kw0WwyrsH5TniY5bdOrXh-_I1ikH26dtRCjTXQcQBAfaKhQapG63E5TNk4UdOcuvp3pGlIxKA7IP59ycgYEHFfGEN7cF3DUz9JnuCbjBjK3eS6XB1J8UqBVzgeL1kdRZo5j9lfMIC6sQHihLH9-haQR7pfqT6dbm-ffNtoCITzTuv4aCrP21Qbq5LqdzcZ", | |
"incompleteSearch": false, | |
"items": [ | |
{ | |
"kind": "drive#file", |
View cppcheck.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
src\utils\ScopedWin.h:223:9: performance: When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'prevPen' a value by passing the value to the constructor in the initialization list. [useInitializationList] | |
prevPen = (HPEN)SelectObject(hdc, pen); | |
^ | |
src\utils\ScopedWin.h:237:9: performance: When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning 'prevBrush' a value by passing the value to the constructor in the initialization list. [useInitializationList] | |
prevBrush = (HBRUSH)SelectObject(hdc, pen); | |
^ | |
src\mui\TextRender.h:108:5: warning: Member variable 'TextRenderGdiplus::measureAlgo' is not initialized in the co |
View TabsCtrl.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright 2022 the SumatraPDF project authors (see AUTHORS file). | |
License: Simplified BSD (see COPYING.BSD) */ | |
#include "utils/BaseUtil.h" | |
#include "utils/ScopedWin.h" | |
#include "utils/Dpi.h" | |
#include "utils/WinUtil.h" | |
#include "wingui/Layout.h" | |
#include "wingui/Window.h" |
View main.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
All crashes | |
ntdll.dll!RtlRaiseStatus+0x36 | |
ntdll.dll!RtlUnwindEx+0x5b3 | |
ntdll.dll!RtlUnwind+0xcd | |
libmupdf.dll!__longjmp_internal+0xe9 D:\a\_work\1\s\src\vctools\crt\vcruntime\src\eh\amd64\longjmp.asm+141 | |
libmupdf.dll!throw+0x54 mupdf\source\fitz\error.c+183 | |
libmupdf.dll!fz_rethrow+0xf mupdf\source\fitz\error.c+292 | |
libmupdf.dll!pdf_process_contents+0x1ea mupdf\source\pdf\pdf-interpret.c+1085 | |
libmupdf.dll!pdf_run_page_contents_with_usage_imp+0x3c1 mupdf\source\pdf\pdf-run.c+155 | |
libmupdf.dll!pdf_run_page_contents_with_usage+0xb8 mupdf\source\pdf\pdf-run.c+187 |
NewerOlder