Skip to content

Commit 18fced9

Browse files
authored
Merge pull request #694 from fastfetch-cli/dev
Release 2.6.2
2 parents 0f69dc5 + 713ef0c commit 18fced9

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.6.2
2+
3+
Bugfixes:
4+
* Fix building for GCC in Windows (Windows)
5+
16
# 2.6.1
27

38
Features:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs & project homepage url
22

33
project(fastfetch
4-
VERSION 2.6.1
4+
VERSION 2.6.2
55
LANGUAGES C
66
DESCRIPTION "Fast neofetch-like system information tool"
77
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"

src/detection/terminalshell/terminalshell_windows.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ bool fftsGetShellVersion(FFstrbuf* exe, const char* exeName, FFstrbuf* version);
8686

8787
static uint32_t getShellInfo(FFShellResult* result, uint32_t pid)
8888
{
89-
uint32_t ppid;
89+
uint32_t ppid = 0;
9090

9191
while (pid != 0 && getProcessInfo(pid, &ppid, &result->processName, &result->exe, &result->exeName, &result->exePath, NULL))
9292
{

0 commit comments

Comments
 (0)