Changeset 2261 for trunk/gsdl/src/recpt


Ignore:
Timestamp:
2001-04-03T02:13:26+12:00 (23 years ago)
Author:
say1
Message:

fixed a minor c initialisation bug

Location:
trunk/gsdl/src/recpt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/OIDtools.cpp

    r1860 r2261  
    8282  response.clear();
    8383
    84   comerror_t err;
     84  comerror_t err = noError;
    8585  FilterRequest_t request;
    8686  request.clear();
     
    115115  response.clear();
    116116
    117   comerror_t err;
     117  comerror_t err = noError;
    118118  FilterRequest_t request;
    119119
     
    147147  if (OIDs.empty()) return true;
    148148
    149   comerror_t err;
     149  comerror_t err = noError;
    150150  FilterRequest_t request;
    151151
     
    198198  response.clear();
    199199
    200   comerror_t err;
     200  comerror_t err = noError;
    201201  FilterRequest_t request;
    202202  OptionValue_t option;
  • trunk/gsdl/src/recpt/collectoraction.cpp

    r2218 r2261  
    676676
    677677      // don't include z39.50 collection
    678       comerror_t err;
     678      comerror_t err = noError;
    679679      if ((*rprotolist_here).p->get_protocol_name (err) == "z3950proto") {
    680680    rprotolist_here ++;
     
    15841584  recptprotolistclass::iterator rprotolist_end = protos->end();
    15851585  while (rprotolist_here != rprotolist_end) {
    1586     comerror_t err;
     1586    comerror_t err = noError;
    15871587    if ((*rprotolist_here).p != NULL) {
    15881588      if ((*rprotolist_here).p->get_protocol_name (err) == "nullproto") {
     
    16151615  recptprotolistclass::iterator rprotolist_end = protos->end();
    16161616  while (rprotolist_here != rprotolist_end) {
    1617     comerror_t err;
     1617    comerror_t err = noError;
    16181618    if ((*rprotolist_here).p != NULL) {
    16191619      if ((*rprotolist_here).p->get_protocol_name (err) == "nullproto") {
  • trunk/gsdl/src/recpt/corbaproto.mpp

    r2223 r2261  
    558558  wassuccess = (success != 0);
    559559  err = (comerror_t) corbaError; 
     560  cout << "Corbaproto::Ping" << err << endl;
    560561}
    561562
Note: See TracChangeset for help on using the changeset viewer.