- fixed statements throwing unused-value warning
This commit is contained in:
2
buffer.c
2
buffer.c
@ -86,7 +86,7 @@ pRuenBuffer CreateRuenBuffer(char *name)
|
|||||||
}
|
}
|
||||||
|
|
||||||
pNew->name = strdup(name);
|
pNew->name = strdup(name);
|
||||||
Fortify_CheckAllMemory();
|
(void)Fortify_CheckAllMemory();
|
||||||
pNew->iLineList = LLDblobCreate();
|
pNew->iLineList = LLDblobCreate();
|
||||||
if (pNew->iLineList == -1) {
|
if (pNew->iLineList == -1) {
|
||||||
DeleteDescriptor(pNew->pDes);
|
DeleteDescriptor(pNew->pDes);
|
||||||
|
Reference in New Issue
Block a user