Changes between Initial Version and Version 1 of Ticket #66045, comment 1
- Timestamp:
- Oct 22, 2022, 3:33:59 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #66045, comment 1
initial v1 1 Perhaps this is the reason: https://github.com/FreeRDP/FreeRDP/pull/607 1 Ah, the source has a silly bug in fact: 2 {{{ 3 #ifndef HAVE_WCSDUP 4 wchar_t *wcsdup(const wchar_t *str); 5 #endif 6 7 #ifndef HAVE_WCSDUP 8 #include <wchar.h> 9 wchar_t *wcsdup(const wchar_t *str); 10 #endif 11 }}}