File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ install-doc :
125125 mkdir -p $(PREFIX ) /share/doc/winpty
126126 install -m 644 -p LICENSE $(PREFIX ) /share/doc/winpty
127127 install -m 644 -p README.md $(PREFIX ) /share/doc/winpty
128- install -m 644 -p RELEASES.md $(PREFIX ) /share/doc/winpty
128+ install -m 644 -p RELEASES* .md $(PREFIX ) /share/doc/winpty
129129
130130.PHONY : install-include
131131install-include :
Original file line number Diff line number Diff line change 1+ # Version 0.3.1 (2016-05-31)
2+
3+ This version was released solely to fix a possible crashing bug in 0.3.0.
4+
5+ Bug fixes:
6+
7+ * Fixed an uninitialized memory bug that could have crashed winpty.
8+ [ #80 ] ( https://github.com/rprichard/winpty/issues/80 )
Original file line number Diff line number Diff line change 1- 0.3.0
1+ 0.3.1
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ createPipeSecurityDescriptorOwnerFullControl() {
218218 Sid localSystem;
219219 Sid builtinAdmins;
220220 Sid owner;
221- std::array<EXPLICIT_ACCESSW, 3 > daclEntries;
221+ std::array<EXPLICIT_ACCESSW, 3 > daclEntries = {} ;
222222 Acl dacl;
223223 SecurityDescriptor value;
224224 };
@@ -258,7 +258,7 @@ createPipeSecurityDescriptorOwnerFullControlEveryoneWrite() {
258258 Sid builtinAdmins;
259259 Sid owner;
260260 Sid everyone;
261- std::array<EXPLICIT_ACCESSW, 4 > daclEntries;
261+ std::array<EXPLICIT_ACCESSW, 4 > daclEntries = {} ;
262262 Acl dacl;
263263 SecurityDescriptor value;
264264 };
You can’t perform that action at this time.
0 commit comments