zapit/src/getservices.cpp: fix uninitialized warnings

Origin commit data
------------------
Commit: a27fb18e34
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-01-18 (Fri, 18 Jan 2013)
This commit is contained in:
[CST] Focus
2013-01-18 12:31:28 +04:00
parent b2ff4e11ca
commit ef6791fda7

View File

@@ -598,7 +598,7 @@ bool CServiceManager::LoadScanXml(fe_type_t delsys)
{ {
if (ParseScanXml(delsys)) { if (ParseScanXml(delsys)) {
/* fake position for non-satellite */ /* fake position for non-satellite */
t_satellite_position position; t_satellite_position position = 0;
xmlNodePtr search = xmlDocGetRootElement(scanInputParser)->xmlChildrenNode; xmlNodePtr search = xmlDocGetRootElement(scanInputParser)->xmlChildrenNode;
while (search) { while (search) {
@@ -929,7 +929,7 @@ bool CServiceManager::SaveCurrentServices(transponder_id_t tpid)
return false; return false;
} }
const char * footer; const char * footer = "";
switch (tI->second.deltype) { switch (tI->second.deltype) {
case FE_QPSK: /* satellite */ case FE_QPSK: /* satellite */
sprintf(satstr, "\t<%s name=\"%s\" position=\"%hd\">\n", "sat", spos_it->second.name.c_str(), satellitePosition); sprintf(satstr, "\t<%s name=\"%s\" position=\"%hd\">\n", "sat", spos_it->second.name.c_str(), satellitePosition);