Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.15 KB | None | 0 0
  1. # LINUX
  2. ┗❯ uname -a
  3. Linux GENTZ-NEWPC-ARCH2 4.11.6-1-hardened #1 SMP PREEMPT Sat Jun 17 19:56:43 EDT 2017 x86_64 GNU/Linux
  4.  
  5. ┗❯ pacman -Q zsh
  6. zsh 5.3.1-2
  7.  
  8. ┗❯ gdb crimesquad
  9. GNU gdb (GDB) 8.0
  10. Copyright (C) 2017 Free Software Foundation, Inc.
  11. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  12. This is free software: you are free to change and redistribute it.
  13. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  14. and "show warranty" for details.
  15. This GDB was configured as "x86_64-pc-linux-gnu".
  16. Type "show configuration" for configuration details.
  17. For bug reporting instructions, please see:
  18. <http://www.gnu.org/software/gdb/bugs/>.
  19. Find the GDB manual and other documentation resources online at:
  20. <http://www.gnu.org/software/gdb/documentation/>.
  21. For help, type "help".
  22. Type "apropos word" to search for commands related to "word"...
  23. Reading symbols from crimesquad...done.
  24. (gdb) run
  25. Thread 1 "crimesquad" received signal SIGSEGV, Segmentation fault.
  26. 0x00007ffff6a2eb4d in __memmove_sse2_unaligned_erms () from /usr/lib/libc.so.6
  27. (gdb) bt
  28. #0 0x00007ffff6a2eb4d in __memmove_sse2_unaligned_erms () from /usr/lib/libc.so.6
  29. #1 0x00007ffff6a1d69b in __GI__IO_file_xsgetn () from /usr/lib/libc.so.6
  30. #2 0x00007ffff6a11eb1 in fread () from /usr/lib/libc.so.6
  31. #3 0x0000000000441656 in load () at title/saveload.cpp:952
  32. #4 0x00000000004049d0 in main (argc=<optimized out>, argv=<optimized out>) at game.cpp:498
  33. (gdb) info registers
  34. rax 0x0 0
  35. rbx 0x1420350 21103440
  36. rcx 0x7ffff6d448c0 140737334495424
  37. rdx 0x28 40
  38. rsi 0x142126a 21107306
  39. rdi 0x0 0
  40. rbp 0x316 0x316
  41. rsp 0x7fffffffbe88 0x7fffffffbe88
  42. r8 0xb40 2880
  43. r9 0x0 0
  44. r10 0x1420430 21103664
  45. r11 0x145259c 21308828
  46. r12 0x0 0
  47. r13 0x28 40
  48. r14 0x143d620 21222944
  49. r15 0x28 40
  50. rip 0x7ffff6a2eb4d 0x7ffff6a2eb4d <__memmove_sse2_unaligned_erms+253>
  51. eflags 0x10287 [ CF PF SF IF RF ]
  52. cs 0x33 51
  53. ss 0x2b 43
  54. ds 0x0 0
  55. es 0x0 0
  56. fs 0x0 0
  57. gs 0x0 0
  58. (gdb) list
  59. 285 int primary_conservative=0; //Terra Vitae addition
  60. 286 int pres_liberal=0; // Terra Vitae addition
  61. 287 int pres_stalin=0; // Terra Vitae addition
  62. 288 int court_liberal=0; // Terra Vitae addition
  63. 289 int court_stalin=0; // Terra Vitae addition
  64. 290 int amradioattacktarget=-1; //Terra Vitae addition
  65. 291 int cablenewsattacktarget=-1; //Terra Vitae addition
  66. 292 int churchattacktarget=-1; //Terra Vitae addition
  67. 293 int global_disable_criminalization=0; //Terra Vitae addition
  68. 294
  69. (gdb) list title/saveload.cpp:952
  70. 947
  71. 948 fread(&dummy, sizeof(int), 1, h);
  72. 949 lobbies.resize(dummy);
  73. 950 for (int l = 0; l < len(lobbies); l++)
  74. 951 {
  75. 952 fread(&lobbies[l]->LobbyName, sizeof(char), CREATURE_NAMELEN, h);
  76. 953 fread(&lobbies[l]->LobbyCreatures, sizeof(int), CREATURENUM, h);
  77. 954 fread(&lobbies[l]->LobbyLaws, sizeof(int), LAWNUM, h);
  78. 955 fread(&lobbies[l]->spectrum, sizeof(int), 1, h);
  79. 956 fread(&lobbies[l]->alignment_max_liberal, sizeof(int), 1, h);
  80. (gdb) print l
  81. No symbol "l" in current context.
  82. (gdb) up
  83. #1 0x00007ffff6a1d69b in __GI__IO_file_xsgetn () from /usr/lib/libc.so.6
  84. (gdb) up
  85. #2 0x00007ffff6a11eb1 in fread () from /usr/lib/libc.so.6
  86. (gdb) up
  87. #3 0x0000000000441656 in load () at title/saveload.cpp:952
  88. 952 fread(&lobbies[l]->LobbyName, sizeof(char), CREATURE_NAMELEN, h);
  89. (gdb) print l
  90. $1 = 0
  91. (gdb) print len(lobbies)
  92. No symbol "len" in current context.
  93. (gdb) print len(dummy)
  94. No symbol "len" in current context.
  95. (gdb) print dummy
  96. $2 = 2
  97. (gdb) print &lobbies[l]
  98. $3 = (Lobby **) 0x143d620
  99. (gdb) print lobbies[l]
  100. $4 = (Lobby *) 0x0
  101. (gdb) print &lobbies[l]->LobbyName
  102. $5 = (char (*)[40]) 0x0
  103. (gdb) print sizeof(char)
  104. $6 = 1
  105. (gdb) print CREATURE_NAMELEN
  106. No symbol "CREATURE_NAMELEN" in current context.
  107. (gdb) !grep CREATURE_NAMELEN -r
  108. daily/date.cpp: enter_name(4,0,d.date[e]->name,CREATURE_NAMELEN,d.date[e]->propername);
  109. daily/date.cpp: enter_name(4,0,d.date[e]->name,CREATURE_NAMELEN,d.date[e]->propername);
  110. daily/daily.cpp: char FatherName[CREATURE_NAMELEN], MotherName[CREATURE_NAMELEN];
  111. daily/daily.cpp: for (i = 0; i < CREATURE_NAMELEN; i++)
  112. common/commondisplay.cpp: enter_name(24,0,activesquad->squad[p]->name,CREATURE_NAMELEN,activesquad->squad[p]->propername);
  113. combat/haulkidnap.cpp: enter_name(4,0,newcr->name,CREATURE_NAMELEN,newcr->propername);
  114. basemode/reviewmode.cpp: enter_name(24,0,temppool[p]->name,CREATURE_NAMELEN,temppool[p]->propername);
  115. title/newgame.cpp: enter_name(2,0,newcr->name,CREATURE_NAMELEN,newcr->propername);
  116. title/saveload.cpp: fwrite(&lobbies[l]->LobbyName, sizeof(char), CREATURE_NAMELEN, h);
  117. title/saveload.cpp: fread(&lobbies[l]->LobbyName, sizeof(char), CREATURE_NAMELEN, h);
  118. includes.h: char Name[CREATURE_NAMELEN];
  119. includes.h: char LobbyName[CREATURE_NAMELEN];
  120. creature/creature.h:#define CREATURE_NAMELEN 40
  121. creature/creature.h: char name[CREATURE_NAMELEN];
  122. creature/creature.h: char propername[CREATURE_NAMELEN];
  123. (gdb) print h
  124. $9 = (FILE *) 0x1420350
  125. (gdb) list
  126. 947
  127. 948 fread(&dummy, sizeof(int), 1, h);
  128. 949 lobbies.resize(dummy);
  129. 950 for (int l = 0; l < len(lobbies); l++)
  130. 951 {
  131. 952 fread(&lobbies[l]->LobbyName, sizeof(char), CREATURE_NAMELEN, h);
  132. 953 fread(&lobbies[l]->LobbyCreatures, sizeof(int), CREATURENUM, h);
  133. 954 fread(&lobbies[l]->LobbyLaws, sizeof(int), LAWNUM, h);
  134. 955 fread(&lobbies[l]->spectrum, sizeof(int), 1, h);
  135. 956 fread(&lobbies[l]->alignment_max_liberal, sizeof(int), 1, h);
  136. (gdb) up
  137. #4 0x00000000004049d0 in main (argc=<optimized out>, argv=<optimized out>) at game.cpp:498
  138. 498 loaded=load();
  139. (gdb) list
  140. 493 if(!xml_loaded_ok) end_game(EXIT_FAILURE);
  141. 494
  142. 495 //addstr("Attempting to load saved game... ");
  143. 496 //getkey();
  144. 497
  145. 498 loaded=load();
  146. 499
  147. 500 //addstr("Setup complete!");
  148. 501 //getkey();
  149. 502
  150.  
  151. # wine
  152. ┗❯ pacman -Q wine-staging
  153. wine-staging 2.10-1
  154.  
  155. # using wineconsole gives this backtrace when loading saves (plays fine first time you start lcs)
  156. Unhandled exception: page fault on write access to 0x00000000 in 32-bit code (0xe15dff45).
  157. Register dump:
  158. CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
  159. EIP:e15dff45 ESP:0033e238 EBP:0033e288 EFLAGS:00010283( R- -- I S - - -C)
  160. EAX:00fb2b43 EBX:e15dff40 ECX:00000028 EDX:00000028
  161. ESI:00000000 EDI:00000028
  162. Stack dump:
  163. 0x0033e238: 7de80000 7ddf6827 00000000 00fb2b1b
  164. 0x0033e248: 00000028 00000000 00000000 7ddffc36
  165. 0x0033e258: 00000028 00000001 00000028 00000000
  166. 0x0033e268: 00000000 7de90260 0033e290 7ddf66b6
  167. 0x0033e278: 0033e2a0 7de80000 7de90260 00000000
  168. 0x0033e288: 0033e2e8 7ddf6a15 0033e2b0 7de80000
  169. Backtrace:
  170. =>0 0xe15dff45 __memcpy_ssse3+0x1755() in libc.so.6 (0x0033e288)
  171. 1 0x7de80000 type_info_rtti+0xa7f() in ucrtbase (0x0033e288)
  172. 2 0x7ddf6a15 MSVCRT_fread+0x44() in ucrtbase (0x0033e2e8)
  173. 3 0x004b18cf in crimesquad (+0xb18ce) (0x0033fd5c)
  174. 4 0x004e1822 in crimesquad (+0xe1821) (0x0033fdc4)
  175. 5 0x004e7867 in crimesquad (+0xe7866) (0x0033fe10)
  176. 6 0x7b461ce9 call_process_entry+0x18() in kernel32 (0x0033fe38)
  177. 7 0x7b462dac in kernel32 (+0x42dab) (0x0033fe88)
  178. 8 0x7bca51cc call_thread_func_wrapper+0xb() in ntdll (0x0033feb8)
  179. 9 0x7bca843f call_thread_func+0xce() in ntdll (0x0033ffa8)
  180. 10 0x7bca51aa RtlRaiseException+0x21() in ntdll (0x0033ffc8)
  181. 11 0x7bc75b93 call_dll_entry_point+0x432() in ntdll (0x0033ffe8)
  182. 12 0xe169f63d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000)
  183. 13 0xe169f7a0 wine_switch_to_stack+0x1f() in libwine.so.1 (0xffe6ee08)
  184. 14 0x7bc7cd9b LdrInitializeThunk+0x39a() in ntdll (0xffe6ee88)
  185. 15 0x7b46955a __wine_kernel_init+0x929() in kernel32 (0xffe6fff8)
  186. 16 0x7bc7d99d __wine_process_init+0x15c() in ntdll (0xffe70068)
  187. 17 0xe169e548 wine_init+0x2d7() in libwine.so.1 (0xffe700c8)
  188. 18 0x7c000c02 main+0x81() in <wine-loader> (0xffe70528)
  189. 19 0xe14c3253 __libc_start_main+0xf2() in libc.so.6 (0x00000000)
  190. 0xe15dff45 __memcpy_ssse3+0x1755 in libc.so.6: (bad)
  191. Modules:
  192. Module Address Debug info Name (142 modules)
  193. PE 350000- 36a000 Deferred libvorbisfile-3
  194. PE 370000- 385000 Deferred libogg-0
  195. PE 400000- d66000 Export crimesquad
  196. PE 10000000-10026000 Deferred pdcurses
  197. PE 67880000-678db000 Deferred sdl2_mixer
  198. PE 6c740000-6c84b000 Deferred sdl2
  199. PE 6d540000-6d579000 Deferred libvorbis-0
  200. ELF 7b400000-7b7ec000 Dwarf kernel32<elf>
  201. \-PE 7b420000-7b7ec000 \ kernel32
  202. ELF 7bc00000-7bd24000 Dwarf ntdll<elf>
  203. \-PE 7bc40000-7bd24000 \ ntdll
  204. ELF 7c000000-7c004000 Dwarf <wine-loader>
  205. ELF 7c5d3000-7c6fa000 Deferred libasound.so.2
  206. ELF 7c883000-7c899000 Deferred midimap<elf>
  207. \-PE 7c890000-7c899000 \ midimap
  208. ELF 7c89b000-7c8c6000 Deferred msacm32<elf>
  209. \-PE 7c8a0000-7c8c6000 \ msacm32
  210. ELF 7c8cb000-7c8fd000 Deferred winealsa<elf>
  211. \-PE 7c8d0000-7c8fd000 \ winealsa
  212. ELF 7cb13000-7cba2000 Deferred libvorbisenc.so.2
  213. ELF 7cba3000-7cbd2000 Deferred libvorbis.so.0
  214. ELF 7cbd3000-7cbdb000 Deferred libogg.so.0
  215. ELF 7cbdb000-7cc61000 Deferred libflac.so.8
  216. ELF 7cc63000-7cc7f000 Deferred libgcc_s.so.1
  217. ELF 7cc83000-7cc99000 Deferred libgpg-error.so.0
  218. ELF 7cc9b000-7cd69000 Deferred libgcrypt.so.20
  219. ELF 7cd6b000-7cd97000 Deferred liblzma.so.5
  220. ELF 7cd9b000-7cdb2000 Deferred libresolv.so.2
  221. ELF 7cdb3000-7cdba000 Deferred libasyncns.so.0
  222. ELF 7cdbb000-7ce49000 Deferred libsndfile.so.1
  223. ELF 7ce4b000-7cede000 Deferred libsystemd.so.0
  224. ELF 7cee3000-7cf3f000 Deferred libdbus-1.so.3
  225. ELF 7cf43000-7cfd3000 Deferred libpulsecommon-10.0.so
  226. ELF 7cfd3000-7d02e000 Deferred libpulse.so.0
  227. ELF 7d043000-7d05c000 Deferred msacm32<elf>
  228. \-PE 7d050000-7d05c000 \ msacm32
  229. ELF 7d063000-7d08e000 Deferred winepulse<elf>
  230. \-PE 7d070000-7d08e000 \ winepulse
  231. ELF 7d093000-7d09d000 Deferred librt.so.1
  232. ELF 7d0a3000-7d176000 Deferred libopenal.so.1
  233. ELF 7d17b000-7d180000 Deferred libcap.so.2
  234. ELF 7d183000-7d1a6000 Deferred mmdevapi<elf>
  235. \-PE 7d190000-7d1a6000 \ mmdevapi
  236. ELF 7d1ab000-7d1d1000 Deferred xaudio2_7<elf>
  237. \-PE 7d1b0000-7d1d1000 \ xaudio2_7
  238. ELF 7d28b000-7d376000 Deferred msvcr120<elf>
  239. \-PE 7d2b0000-7d376000 \ msvcr120
  240. ELF 7d37b000-7d39f000 Deferred uxtheme-gtk<elf>
  241. \-PE 7d380000-7d386000 \ uxtheme
  242. ELF 7d3a3000-7d3aa000 Deferred libxfixes.so.3
  243. ELF 7d3b3000-7d3d3000 Deferred concrt140<elf>
  244. \-PE 7d3c0000-7d3d3000 \ concrt140
  245. ELF 7d5cb000-7d615000 Deferred libfontconfig.so.1
  246. ELF 7d61b000-7d626000 Deferred libxcursor.so.1
  247. ELF 7d64b000-7d6c4000 Deferred libpcre.so.1
  248. ELF 7d6cb000-7d7f7000 Deferred libglib-2.0.so.0
  249. ELF 7d7fb000-7d887000 Deferred libharfbuzz.so.0
  250. ELF 7d88b000-7d8c9000 Deferred libpng16.so.16
  251. ELF 7d8cb000-7d8e4000 Deferred libz.so.1
  252. ELF 7d8eb000-7d9b8000 Deferred libfreetype.so.6
  253. ELF 7d9bb000-7d9e5000 Deferred libexpat.so.1
  254. ELF 7d9eb000-7d9f8000 Deferred libxrandr.so.2
  255. ELF 7d9fb000-7da0c000 Deferred libbz2.so.1.0
  256. ELF 7da13000-7da26000 Deferred libxi.so.6
  257. ELF 7da2b000-7da32000 Deferred libxdmcp.so.6
  258. ELF 7da33000-7da5e000 Deferred libxcb.so.1
  259. ELF 7da63000-7dbb0000 Deferred libx11.so.6
  260. ELF 7dbb3000-7dbc8000 Deferred libxext.so.6
  261. ELF 7dbd3000-7dbd7000 Deferred libxcomposite.so.1
  262. ELF 7dbdb000-7dbe7000 Deferred libxrender.so.1
  263. ELF 7dbeb000-7dbf2000 Deferred libxxf86vm.so.1
  264. ELF 7dbf3000-7dbf7000 Deferred libxinerama.so.1
  265. ELF 7dbfb000-7dc88000 Deferred winex11<elf>
  266. \-PE 7dc10000-7dc88000 \ winex11
  267. ELF 7dc8b000-7dc9f000 Deferred api-ms-win-crt-time-l1-1-0<elf>
  268. \-PE 7dc90000-7dc9f000 \ api-ms-win-crt-time-l1-1-0
  269. ELF 7dca3000-7dcbb000 Deferred api-ms-win-crt-multibyte-l1-1-0<
  270. PE 7dcb0000-7dcbb000 Deferred api-ms-win-crt-multibyte-l1-1-0
  271. PE 7dcbb000-7dccf000 Deferred api-ms-win-crt-filesystem-l1-1-0
  272. PE 7dcc0000-7dccf000 Deferred api-ms-win-crt-filesystem-l1-1-0C:\windows\system32\api-ms-win-crt-filesystem-l1-1-0.dll
  273. ELF 7dcd3000-7dced000 Deferred api-ms-win-crt-math-l1-1-0<elf>
  274. \-PE 7dce0000-7dced000 \ api-ms-win-crt-math-l1-1-0
  275. ELF 7dcf3000-7dd07000 Deferred api-ms-win-crt-heap-l1-1-0<elf>
  276. \-PE 7dd00000-7dd07000 \ api-ms-win-crt-heap-l1-1-0
  277. ELF 7dd0b000-7dd21000 Deferred api-ms-win-crt-convert-l1-1-0<el
  278. PE 7dd10000-7dd21000 Deferred api-ms-win-crt-convert-l1-1-0
  279. ELF 7dd23000-7dd37000 Deferred api-ms-win-crt-locale-l1-1-0<elf
  280. PE 7dd30000-7dd37000 Deferred api-ms-win-crt-locale-l1-1-0
  281. ELF 7dd3b000-7dd51000 Deferred api-ms-win-crt-stdio-l1-1-0<elf>
  282. \-PE 7dd40000-7dd51000 \ api-ms-win-crt-stdio-l1-1-0
  283. ELF 7dd53000-7dd69000 Deferred api-ms-win-crt-string-l1-1-0<elf
  284. PE 7dd60000-7dd69000 Deferred api-ms-win-crt-string-l1-1-0
  285. ELF 7dd6b000-7dd81000 Deferred api-ms-win-crt-runtime-l1-1-0<el
  286. PE 7dd70000-7dd81000 Deferred api-ms-win-crt-runtime-l1-1-0
  287. ELF 7dd83000-7dd99000 Deferred vcruntime140<elf>
  288. \-PE 7dd90000-7dd99000 \ vcruntime140
  289. ELF 7dd9b000-7de92000 Dwarf ucrtbase<elf>
  290. \-PE 7ddc0000-7de92000 \ ucrtbase
  291. ELF 7de93000-7dfb0000 Deferred msvcp140<elf>
  292. \-PE 7ded0000-7dfb0000 \ msvcp140
  293. ELF 7dfb3000-7e06d000 Deferred winmm<elf>
  294. \-PE 7dfc0000-7e06d000 \ winmm
  295. ELF 7e073000-7e171000 Deferred comctl32<elf>
  296. \-PE 7e080000-7e171000 \ comctl32
  297. ELF 7e173000-7e18e000 Deferred aclui<elf>
  298. \-PE 7e180000-7e18e000 \ aclui
  299. ELF 7e193000-7e20c000 Deferred shlwapi<elf>
  300. \-PE 7e1a0000-7e20c000 \ shlwapi
  301. ELF 7e213000-7e4e0000 Deferred shell32<elf>
  302. \-PE 7e220000-7e4e0000 \ shell32
  303. ELF 7e4e3000-7e617000 Deferred oleaut32<elf>
  304. \-PE 7e500000-7e617000 \ oleaut32
  305. ELF 7e61b000-7e69d000 Deferred rpcrt4<elf>
  306. \-PE 7e630000-7e69d000 \ rpcrt4
  307. ELF 7e6a3000-7e7dd000 Deferred ole32<elf>
  308. \-PE 7e6c0000-7e7dd000 \ ole32
  309. ELF 7e7e3000-7e8a3000 Deferred msvcrt<elf>
  310. \-PE 7e800000-7e8a3000 \ msvcrt
  311. ELF 7e8a3000-7e8c7000 Deferred imm32<elf>
  312. \-PE 7e8b0000-7e8c7000 \ imm32
  313. ELF 7e8cb000-7e944000 Deferred advapi32<elf>
  314. \-PE 7e8e0000-7e944000 \ advapi32
  315. ELF 7e94b000-7ea79000 Deferred gdi32<elf>
  316. \-PE 7e960000-7ea79000 \ gdi32
  317. ELF 7ea7b000-7ebd4000 Deferred user32<elf>
  318. \-PE 7ea90000-7ebd4000 \ user32
  319. ELF 7ebdb000-7ebee000 Deferred libnss_files.so.2
  320. ELF 7ebf3000-7ec01000 Deferred libnss_nis.so.2
  321. ELF 7ec03000-7ec1e000 Deferred libnsl.so.1
  322. ELF 7ec23000-7ec2d000 Deferred libnss_compat.so.2
  323. ELF 7ef6b000-7efc7000 Deferred libm.so.6
  324. ELF 7efcb000-7efdf000 Deferred api-ms-win-crt-utility-l1-1-0<el
  325. PE 7efd0000-7efdf000 Deferred api-ms-win-crt-utility-l1-1-0
  326. ELF 7efe3000-7effd000 Deferred version<elf>
  327. \-PE 7eff0000-7effd000 \ version
  328. ELF e1473000-e1478000 Deferred libdl.so.2
  329. ELF e14a3000-e14a7000 Deferred libxau.so.6
  330. ELF e14ab000-e166c000 Dwarf libc.so.6
  331. ELF e1673000-e1691000 Deferred libpthread.so.0
  332. ELF e1693000-e1862000 Dwarf libwine.so.1
  333. ELF e1863000-e1888000 Deferred ld-linux.so.2
  334. ELF e1890000-e1891000 Deferred [vdso].so
  335. Threads:
  336. process tid prio (all id:s are in hex)
  337. 0000000e services.exe
  338. 00000028 0
  339. 00000025 0
  340. 00000020 0
  341. 0000001a 0
  342. 00000015 0
  343. 00000012 0
  344. 0000000f 0
  345. 00000013 winedevice.exe
  346. 0000001f 0
  347. 00000019 0
  348. 00000018 0
  349. 00000014 0
  350. 0000001d plugplay.exe
  351. 00000022 0
  352. 00000021 0
  353. 0000001e 0
  354. 00000023 winedevice.exe
  355. 0000002b 0
  356. 00000027 0
  357. 00000026 0
  358. 00000024 0
  359. 00000043 wineconsole.exe
  360. [C:\windows\system32\wineconsole.exe]
  361. 00000044 0
  362. 00000045 explorer.exe
  363. 00000049 0
  364. 00000048 0
  365. 00000047 0
  366. 00000046 0
  367. 0000004a cmd.exe
  368. [cmd]
  369. 0000004b 0
  370. 0000004e (D) Z:\home\gentz\Downloads\TerraVitae 1.2 For Windows\crimesquad.exe
  371. [crimesquad.exe]
  372. 00000056 0
  373. 00000055 2
  374. 00000054 15
  375. 00000053 0
  376. 00000050 0
  377. 0000004f 0 <==
  378. 00000059 explorer.exe
  379. 0000005d 0
  380. 0000005c 0
  381. 0000005b 0
  382. 0000005a 0
  383. System information:
  384. Wine build: wine-2.10 (Staging)
  385. Platform: i386 (WOW64)
  386. Version: Windows 7
  387. Host system: Linux
  388. Host version: 4.11.6-1-hardened
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement