-
There are multiple problems with the format and argument pairs, see the patch for details.
2009-11-02 14:18:52 UTC in Open HPI
-
The section number (8) in the man page reflects the old location of the binary (sbin). The attached patch changes the section to 1 (bin)
2009-09-16 17:30:50 UTC in devio - block device read and write
-
It requires net-snmp 5.5 to get broken builds after a combination of compiler warning and -Werror.
2009-09-03 11:58:16 UTC in Open HPI
-
The debug output in function handle_saHpiDomainInfoActiveEntries() (saHpiDomainInfoTable.c, line 353) uses %d format for an u_long argument while it should be using %ld.
2009-09-03 11:18:15 UTC in Open HPI
-
Are the internal copies of the Zend and Doctrine libraries somehow modified for EnterTrack usage or are they plain copies of upstream sources?.
2009-05-12 13:02:30 UTC in EnterTrack
-
fixed in 2.3 (commit 92401eff021f768cdb8be110d04c340b056cb772)
2009-05-11 09:16:34 UTC in QGit viewer
-
Please include the ffmpeg2dirac export script from the Dirac project directly in Kino. It is part of the ffmpeg2dirac source archive available at https://sourceforge.net/project/showfiles.php?group_id=102564&package_id=309819.
2009-04-16 10:32:48 UTC in Kino
-
oh_compare_sensorreading() should return +1/0/-1 depending whether first parameter is greater than, equal to or less than the second parameter. In case of SAHPI_SENSOR_READING_TYPE_BUFFER the memcmp() function is used. The standard for memcmp() says that the result is "an integer less than, equal to, or greater than zero" and it really can take other values than +1/0/-1, an example is the System...
2009-04-06 13:37:06 UTC in Open HPI
-
There is useless memset call in clients/clients.c, because strncpy() itself takes care of zeroing its output buffer when the string is shorter than the request length. In addition the memset operation is called with wrong buffer size - it uses sizeof(SAHPI_MAX_TEXT_BUFFER_LENGTH) instead of plain SAHPI_MAX_TEXT_BUFFER_LENGTH.
2009-04-06 10:42:45 UTC in Open HPI
-
There is bug in oh_compare_sensorreading() (utils/sahpi_struct_utils.c) when sensor readings with the buffer type are compared - memcmp is used comparing, but with sizeof(SAHPI_SENSOR_BUFFER_LENGTH) as the size instead of plain SAHPI_SENSOR_BUFFER_LENGTH.
2009-04-06 10:34:52 UTC in Open HPI