Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: A bug for 0.7SDK (Read 3033 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

A bug for 0.7SDK

in file metadb_handle.cpp
Code: [Select]
bool metadb_handle::handle_query_meta_field(const char * name,int num,string_base & out)
{
    bool rv = false;
    handle_lock();
    const file_info * info = handle_query_locked();
    if (info)
    {
 const char * val = info->meta_get(name,num);
 if (val)
 {
     out = val;
//      rv = false; //a bug
     rv = true;  //should be this
 }
    }
    handle_unlock();
//             return false;   // a bug here
    return rv;     //should be this
}


should correct it, then rebuild it.
Good good study, day day up, :)
[span style=\'color:red\']The superman is the meaning of the earth.
Let your will say: the superman shall be the meaning of the earth![/span]

A bug for 0.7SDK

Reply #1
Fixed (after RC8), thanks.
Microsoft Windows: We can't script here, this is bat country.

A bug for 0.7SDK

Reply #2
Not fixed yet in RC11 SDK

should be:
Code: [Select]
 
    return rv;
Good good study, day day up, :)
[span style=\'color:red\']The superman is the meaning of the earth.
Let your will say: the superman shall be the meaning of the earth![/span]