SF Bug Tracker id 3497009 - Resource leak in http_SendMessage
Submitted: Fabrice Fontaine ( ffontaine ) - 2012-03-05 05:51:44 PST Fp is not closed if fseeko(Fp, Instr->RangeOffset, SEEK_CUR) does not return 0.
This commit is contained in:
parent
26c3f87eca
commit
5caaf3ad07
@ -2,6 +2,14 @@
|
|||||||
Version 1.6.16
|
Version 1.6.16
|
||||||
*******************************************************************************
|
*******************************************************************************
|
||||||
|
|
||||||
|
2012-03-05 Fabrice Fontaine <fabrice.fontaine(at)orange.com>
|
||||||
|
|
||||||
|
SF Bug Tracker id 3497009 - Resource leak in http_SendMessage
|
||||||
|
|
||||||
|
Submitted: Fabrice Fontaine ( ffontaine ) - 2012-03-05 05:51:44 PST
|
||||||
|
|
||||||
|
Fp is not closed if fseeko(Fp, Instr->RangeOffset, SEEK_CUR) does not return 0.
|
||||||
|
|
||||||
2012-03-05 Fabrice Fontaine <fabrice.fontaine(at)orange.com>
|
2012-03-05 Fabrice Fontaine <fabrice.fontaine(at)orange.com>
|
||||||
|
|
||||||
HInfo->ServiceTable initialization in UpnpRegisterRootDevice2 and UpnpRegisterRootDevice4
|
HInfo->ServiceTable initialization in UpnpRegisterRootDevice2 and UpnpRegisterRootDevice4
|
||||||
|
@ -403,12 +403,12 @@ int http_SendMessage(SOCKINFO *info, int *TimeOut, const char *fmt, ...)
|
|||||||
if (virtualDirCallback.seek(Fp, Instr->RangeOffset,
|
if (virtualDirCallback.seek(Fp, Instr->RangeOffset,
|
||||||
SEEK_CUR) != 0) {
|
SEEK_CUR) != 0) {
|
||||||
RetVal = UPNP_E_FILE_READ_ERROR;
|
RetVal = UPNP_E_FILE_READ_ERROR;
|
||||||
goto ExitFunction;
|
goto Cleanup_File;
|
||||||
}
|
}
|
||||||
} else if (Instr && Instr->IsRangeActive) {
|
} else if (Instr && Instr->IsRangeActive) {
|
||||||
if (fseeko(Fp, Instr->RangeOffset, SEEK_CUR) != 0) {
|
if (fseeko(Fp, Instr->RangeOffset, SEEK_CUR) != 0) {
|
||||||
RetVal = UPNP_E_FILE_READ_ERROR;
|
RetVal = UPNP_E_FILE_READ_ERROR;
|
||||||
goto ExitFunction;
|
goto Cleanup_File;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while (amount_to_be_read) {
|
while (amount_to_be_read) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user