Преглед изворни кода

Return 1 (true) if actually found.

root пре 4 година
родитељ
комит
dc1e1c6585
1 измењених фајлова са 4 додато и 1 уклоњено
  1. 4 1
      hharry.cpp

+ 4 - 1
hharry.cpp

@@ -147,9 +147,12 @@ int locate_user(const char *alias) {
   // Carry on!
   // Carry on!
   while (fread(buffer, 0x600, 1, user) == 1) {
   while (fread(buffer, 0x600, 1, user) == 1) {
     pcopy(buffer + 0x6d, temp);
     pcopy(buffer + 0x6d, temp);
+    // ZF_LOGE("Is [%s] == [%s] ?", temp, alias);
     if (strcasecmp(temp, username.c_str()) == 0) {
     if (strcasecmp(temp, username.c_str()) == 0) {
       pcopy(buffer + 0x8c, temp);
       pcopy(buffer + 0x8c, temp);
       fullname.assign(temp);
       fullname.assign(temp);
+      fclose(user);
+      return 1;
       break;
       break;
     }
     }
     /*
     /*
@@ -159,7 +162,7 @@ int locate_user(const char *alias) {
     */
     */
   }
   }
   fclose(user);
   fclose(user);
-  return 1;
+  return 0;
 }
 }
 
 
 std::ifstream logfile;
 std::ifstream logfile;