mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-09 06:42:19 -04:00
Fix error reported by CppChecker:
/libretroshare/src/gxs/rsgenexchange.cc:2850: erreur : Cppcheck: Dereferencing 'grp' after it is deallocated / released /libretroshare/src/gxstunnel/p3gxstunnel.cc:1004: erreur : Cppcheck: Invalid usage of output stream: '<< std::cerr'. /libretroshare/src/util/contentvalue.cc:185: erreur : Cppcheck: Memory leak: dest /openpgpsdk/src/openpgpsdk/reader_armoured.c:575: erreur : Cppcheck: Common realloc mistake: 'buf' nulled but not freed upon failure /retroshare-gui/src/gui/FileTransfer/DLListDelegate.cpp:103: erreur : Cppcheck: Array 'byteUnits[4]' accessed at index 4, which is out of bounds. /retroshare-gui/src/gui/FileTransfer/DLListDelegate.cpp:122: erreur : Cppcheck: Array 'byteUnits[4]' accessed at index 4, which is out of bounds. /retroshare-gui/src/gui/FileTransfer/DLListDelegate.cpp:141: erreur : Cppcheck: Array 'byteUnits[4]' accessed at index 4, which is out of bounds. /retroshare-gui/src/gui/FileTransfer/ULListDelegate.cpp:92: erreur : Cppcheck: Array 'byteUnits[4]' accessed at index 4, which is out of bounds. /retroshare-gui/src/gui/FileTransfer/ULListDelegate.cpp:111: erreur : Cppcheck: Array 'byteUnits[4]' accessed at index 4, which is out of bounds. /retroshare-gui/src/gui/People/PeopleDialog.cpp:774: erreur : Cppcheck: Uninitialized variable: layout /retroshare-gui/src/gui/People/PeopleDialog.cpp:864: erreur : Cppcheck: Uninitialized variable: layout /retroshare-gui/src/gui/common/AvatarWidget.cpp:225: erreur : Cppcheck: Uninitialized variable: status /retroshare-nogui/src/rpc/proto/rpcprotostream.cc:805: erreur : Cppcheck: Memory leak: buffer /supportlibs/pegmarkdown/GLibFacade.c:150: erreur : Cppcheck: va_list 'args' was opened but not closed by va_end(). /openpgpsdk/src/openpgpsdk/reader_armoured.c:575: erreur : Cppcheck: Common realloc mistake: 'buf' nulled but not freed upon failure /tests/unittests/libretroshare/serialiser/rsturtleitem_test.cc:213: erreur : Cppcheck: Return value of allocation function 'init_item' is not stored.
This commit is contained in:
parent
2e9d22c580
commit
b13292bb80
11 changed files with 24 additions and 14 deletions
|
@ -572,7 +572,15 @@ static int parse_headers(dearmour_arg_t *arg,ops_error_t **errors,
|
|||
if(size <= nbuf+1)
|
||||
{
|
||||
size+=size+80;
|
||||
buf=realloc(buf,size);
|
||||
char *nbuf;
|
||||
nbuf=realloc(buf,size);
|
||||
if (nbuf == NULL)
|
||||
{
|
||||
free(buf);
|
||||
rtn=-1;
|
||||
goto end;
|
||||
}
|
||||
buf = nbuf;
|
||||
}
|
||||
buf[nbuf++]=c;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue